rector/composer.json

30 lines
754 B
JSON
Raw Normal View History

2017-07-15 19:01:21 +02:00
{
"name": "rector/rector",
"description": "Instant Upgrade and Automated Refactoring of any PHP code",
"license": "MIT",
"keywords": ["dev", "refactoring", "automation", "migration"],
2021-03-20 20:32:54 +01:00
"bin": [
"bin/rector"
],
2017-07-15 19:01:21 +02:00
"require": {
"php": "^7.2|^8.0",
"phpstan/phpstan": "^1.12.5"
},
2017-07-15 19:01:21 +02:00
"autoload": {
"files": [
"bootstrap.php"
]
2017-07-15 19:01:21 +02:00
},
"conflict": {
"rector/rector-phpunit": "*",
"rector/rector-symfony": "*",
"rector/rector-doctrine": "*",
"rector/rector-downgrade-php": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"suggest": {
"ext-dom": "To manipulate phpunit.xml via the custom-rule command"
}
2020-07-03 16:41:59 +02:00
}