mirror of
https://github.com/deployphp/deployer.git
synced 2025-02-23 08:45:04 +01:00
* added phpstan callable types * Update src/Task/Task.php * regenerated docs * Update CHANGELOG.md * update phpstan * Restore Collection.php * Restore Master.php * Restore helpers.php * Restore Task.php * Update functions.php * Update functions.php * Update CHANGELOG.md * regenerate docs
66 lines
1.7 KiB
JSON
66 lines
1.7 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": {
|
|
"test": "pest",
|
|
"test:e2e": "pest --config test/e2e/phpunit-e2e.xml",
|
|
"lint": "phpcs",
|
|
"phpstan": "phpstan analyse -c phpstan.neon",
|
|
"phpstan:baseline": "phpstan analyse -c phpstan.neon --generate-baseline test/phpstan-baseline.neon"
|
|
},
|
|
"bin": [
|
|
"bin/dep"
|
|
],
|
|
"require": {
|
|
"php": "^7.3",
|
|
"pimple/pimple": "^3",
|
|
"psr/http-message": "^1",
|
|
"react/http": "^1",
|
|
"symfony/console": "^5",
|
|
"symfony/process": "^5",
|
|
"symfony/yaml": "^5"
|
|
},
|
|
"require-dev": {
|
|
"pestphp/pest": "^0.3",
|
|
"phpstan/phpstan": "^0.12.53",
|
|
"phpunit/phpunit": "^9.3",
|
|
"slevomat/coding-standard": "^6.4",
|
|
"squizlabs/php_codesniffer": "^3.5"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
}
|
|
}
|