mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 08:45:04 +01:00
50 lines
1.2 KiB
JSON
50 lines
1.2 KiB
JSON
{
|
|
"name": "deployer/deployer",
|
|
"description": "Deployment Tool",
|
|
"license": "MIT",
|
|
"homepage": "https://deployer.org",
|
|
"support": {
|
|
"issues": "https://github.com/deployphp/deployer/issues",
|
|
"source": "https://github.com/deployphp/deployer",
|
|
"docs": "https://deployer.org/docs"
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Anton Medvedev",
|
|
"email": "anton@medv.io"
|
|
}
|
|
],
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Deployer\\": "src/"
|
|
},
|
|
"files": [
|
|
"src/functions.php"
|
|
]
|
|
},
|
|
"bin": [
|
|
"bin/dep"
|
|
],
|
|
"require": {
|
|
"php": ">=5.6.0",
|
|
"elfet/pure": "~2.0",
|
|
"monolog/monolog": "^1.21",
|
|
"phpseclib/phpseclib": "~2.0",
|
|
"pimple/pimple": "~3.0",
|
|
"symfony/console": "~2.6|~3.0",
|
|
"symfony/finder": "~2.6|~3.0",
|
|
"symfony/process": "~2.6|~3.0",
|
|
"symfony/yaml": "~2.6|~3.0"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "~5.7"
|
|
},
|
|
"suggest": {
|
|
"ext-sockets": "For parallel deployment",
|
|
"deployer/phar-update": "~2.0"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|