deployer/composer.json

46 lines
1.2 KiB
JSON
Raw Normal View History

2013-07-11 15:47:09 +04:00
{
2015-01-17 15:17:17 +03:00
"name": "deployer/deployer",
2013-07-11 15:47:09 +04:00
"description": "Deployment Tool",
"license": "MIT",
"homepage": "http://deployer.org",
"support": {
"issues": "https://github.com/deployphp/deployer/issues",
"source": "https://github.com/deployphp/deployer",
"docs": "http://deployer.org/docs"
},
2013-07-11 15:47:09 +04:00
"authors": [
{
"name": "Anton Medvedev",
2016-01-11 12:51:59 +07:00
"email": "anton@medv.io"
2013-07-11 15:47:09 +04:00
}
],
"autoload": {
"psr-4": {
2015-02-20 15:14:38 +03:00
"Deployer\\": "src/"
}
2013-07-11 15:47:09 +04:00
},
"bin": [
"bin/dep"
],
2013-07-11 15:47:09 +04:00
"require": {
"php": ">=5.6.0",
2016-03-19 21:40:40 +07:00
"elfet/pure": "~2.0",
2016-02-14 17:46:30 +02:00
"symfony/finder": "~2.6|~3.0",
"symfony/console": "~2.6|~3.0",
"symfony/yaml": "~2.6|~3.0",
"symfony/process": "~2.6|~3.0",
"phpseclib/phpseclib": "~2.0",
2016-08-04 23:19:24 +03:00
"deployer/phar-update": "^1.0",
"symfony/event-dispatcher": "^3.1",
2016-08-05 11:37:30 +03:00
"pimple/pimple": "~3.0",
"monolog/monolog": "^1.21"
2013-07-11 15:47:09 +04:00
},
"require-dev": {
2016-08-04 23:41:51 +03:00
"phpunit/phpunit": "~5.4"
2015-01-16 14:23:27 +03:00
},
"suggest": {
2015-02-20 15:14:38 +03:00
"herzult/php-ssh": "For SSH support through native SSH2 extension",
2015-01-16 14:23:27 +03:00
"ext-sockets": "For parallel deployment"
2015-02-17 12:38:28 +03:00
}
2013-07-11 15:47:09 +04:00
}