deployer/composer.json

33 lines
654 B
JSON
Raw Normal View History

2013-07-11 15:47:09 +04:00
{
"name": "elfet/deployer",
"description": "Deployment Tool",
"license": "MIT",
"authors": [
{
"name": "Elfet",
"email": "anton@elfet.ru"
}
],
"autoload": {
"psr-4": {
"Deployer\\": "src/"
}
2013-07-11 15:47:09 +04:00
},
"bin": [
"bin/dep"
],
2013-07-11 15:47:09 +04:00
"require": {
"php": ">=5.4.0",
"symfony/finder": "~2.6",
"symfony/console": "~2.6",
"symfony/process": "~2.6",
"elfet/php-ssh": "~1.0",
2014-07-07 09:21:42 +04:00
"phpseclib/phpseclib": "0.3.*@dev",
"kherge/amend": "~3.0"
2013-07-11 15:47:09 +04:00
},
"require-dev": {
"phpunit/phpunit": "~3.7"
2013-07-11 15:47:09 +04:00
}
}