deployer/composer.json

66 lines
1.7 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",
2016-11-05 14:14:40 +07:00
"homepage": "https://deployer.org",
"support": {
2020-04-25 23:00:08 +03:00
"docs": "https://deployer.org/docs",
"source": "https://github.com/deployphp/deployer",
2020-04-25 23:00:08 +03:00
"issues": "https://github.com/deployphp/deployer/issues"
},
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
}
],
2020-10-25 09:51:47 +01:00
"funding": [
{
"type": "patreon",
"url": "https://patreon.com/deployer"
},
{
"type": "github",
"url": "https://github.com/sponsors/antonmedv"
}
],
2013-07-11 15:47:09 +04:00
"autoload": {
"psr-4": {
2015-02-20 15:14:38 +03:00
"Deployer\\": "src/"
2017-02-14 14:28:22 +01:00
},
"files": [
2017-03-19 01:00:28 +07:00
"src/Support/helpers.php",
2017-02-14 14:28:22 +01:00
"src/functions.php"
]
2013-07-11 15:47:09 +04:00
},
2020-04-25 23:00:08 +03:00
"scripts": {
2020-10-09 00:15:28 +02:00
"test": "pest",
2020-10-25 09:46:47 +01:00
"test:e2e": "pest --config test/e2e/phpunit-e2e.xml",
"lint": "phpcs",
2020-10-25 09:46:47 +01:00
"phpstan": "phpstan analyse -c phpstan.neon",
"phpstan:baseline": "phpstan analyse -c phpstan.neon --generate-baseline test/phpstan-baseline.neon"
2020-04-25 23:00:08 +03:00
},
"bin": [
"bin/dep"
],
2013-07-11 15:47:09 +04:00
"require": {
2020-04-25 23:00:08 +03:00
"php": "^7.3",
"pimple/pimple": "^3",
2020-07-26 22:35:08 +03:00
"psr/http-message": "^1",
"react/http": "^1",
2020-04-25 23:00:08 +03:00
"symfony/console": "^5",
"symfony/process": "^5",
"symfony/yaml": "^5"
2013-07-11 15:47:09 +04:00
},
"require-dev": {
2020-10-09 00:15:28 +02:00
"pestphp/pest": "^0.3",
"phpstan/phpstan": "^0.12.52",
2020-10-09 00:15:28 +02:00
"phpunit/phpunit": "^9.3",
"slevomat/coding-standard": "^6.4",
"squizlabs/php_codesniffer": "^3.5"
2015-01-16 14:23:27 +03:00
},
2017-02-16 08:50:44 +01:00
"config": {
2020-04-25 23:00:08 +03:00
"sort-packages": true
2015-02-17 12:38:28 +03:00
}
2013-07-11 15:47:09 +04:00
}