deployer/composer.json
2016-03-19 22:44:01 +07:00

43 lines
1.1 KiB
JSON

{
"name": "deployer/deployer",
"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"
},
"authors": [
{
"name": "Anton Medvedev",
"email": "anton@medv.io"
}
],
"autoload": {
"psr-4": {
"Deployer\\": "src/"
}
},
"bin": [
"bin/dep"
],
"require": {
"php": ">=5.5.0",
"elfet/pure": "~2.0",
"symfony/finder": "~2.6|~3.0",
"symfony/console": "~2.6|~3.0",
"symfony/yaml": "~2.6|~3.0",
"symfony/process": "~2.6|~3.0",
"kherge/amend": "~3.0",
"phpseclib/phpseclib": "~2.0"
},
"require-dev": {
"phpunit/phpunit": "~4.5"
},
"suggest": {
"herzult/php-ssh": "For SSH support through native SSH2 extension",
"ext-sockets": "For parallel deployment"
}
}