-
-
Notifications
You must be signed in to change notification settings - Fork 739
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 796 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 796 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "rector/rector",
"description": "Instant Upgrade and Automated Refactoring of any PHP code",
"homepage": "https://getrector.com/",
"license": "MIT",
"keywords": ["dev", "refactoring", "automation", "migration"],
"bin": [
"bin/rector"
],
"require": {
"php": "^7.4|^8.0",
"phpstan/phpstan": "^2.1.41"
},
"autoload": {
"files": [
"bootstrap.php"
]
},
"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"
}
}