deployer/composer.json
Anton Medvedev b1f33b1734
Refactor shell arguments escaping (#2458)
Now, it should not matter what default shell is used on a server: zsh, fish. 
Deployer will automatically switch to bash (or to a user-specified shell).

Laso added a release verification task.
2021-03-13 23:50:38 +03:00

69 lines
1.8 KiB
JSON

{
"name": "deployer/deployer",
"description": "Deployment Tool",
"license": "MIT",
"homepage": "https://deployer.org",
"support": {
"docs": "https://deployer.org/docs",
"source": "https://github.com/deployphp/deployer",
"issues": "https://github.com/deployphp/deployer/issues"
},
"authors": [
{
"name": "Anton Medvedev",
"email": "anton@medv.io"
}
],
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/deployer"
},
{
"type": "github",
"url": "https://github.com/sponsors/antonmedv"
}
],
"autoload": {
"psr-4": {
"Deployer\\": "src/"
},
"files": [
"src/Support/helpers.php",
"src/functions.php"
]
},
"scripts": {
"dep": "bin/dep -f deploy.yaml",
"release": "@dep release",
"test": "pest",
"test:e2e": "pest --config tests/e2e/phpunit-e2e.xml",
"phpcs": "phpcs",
"phpstan": "phpstan analyse -c phpstan.neon",
"phpstan:baseline": "@phpstan --generate-baseline tests/phpstan-baseline.neon"
},
"bin": [
"bin/dep"
],
"require": {
"marcj/topsort": "^2.0",
"psr/http-message": "^1",
"react/http": "^1",
"symfony/console": "^5",
"symfony/polyfill-php80": "^1.22",
"symfony/process": "^5",
"symfony/yaml": "^5"
},
"require-dev": {
"pestphp/pest": "^1.0",
"phpstan/phpstan": "^0.12.53",
"phpunit/phpunit": "^9.3",
"slevomat/coding-standard": "^6.4",
"squizlabs/php_codesniffer": "^3.5"
},
"config": {
"sort-packages": true,
"process-timeout": 0
}
}