mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-17 13:28:18 +01:00
40 lines
1.2 KiB
JSON
40 lines
1.2 KiB
JSON
{
|
|
"name": "rector/rector",
|
|
"description": "Tool that reconstructs your legacy code to modern codebase.",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{ "name": "Tomas Votruba", "email": "tomas.vot@gmail.com", "homepage": "https://tomasvotruba.com" },
|
|
{ "name": "Rector Contributors", "homepage": "https://github.com/TomasVotruba/Rector/graphs/contributors" }
|
|
],
|
|
"require": {
|
|
"php": "^7.1",
|
|
"symfony/console": "^3.3",
|
|
"symfony/dependency-injection": "^3.3",
|
|
"nikic/php-parser": "4.0.x-dev as 3.0.2",
|
|
"ocramius/code-generator-utils": "^0.4",
|
|
"nette/utils": "^2.4"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^6.2",
|
|
"tracy/tracy": "^2.4",
|
|
"symplify/easy-coding-standard": "@dev",
|
|
"phpstan/phpstan": "^0.7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Rector\\": "src"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Rector\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"all": ["phpunit", "@cs", "@ps"],
|
|
"cs": "ecs check src tests",
|
|
"fs": "ecs check src tests --fix",
|
|
"ps": "phpstan analyse src tests --level 7 --configuration phpstan.neon"
|
|
}
|
|
}
|