forked from rectorphp/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 869 Bytes
/
composer.json
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
31
32
33
34
35
{
"name": "rector/rector",
"description": "Instant Upgrade and Automated Refactoring of any PHP code",
"license": "MIT",
"bin": [
"bin/rector"
],
"require": {
"php": "^7.2|^8.0",
"phpstan/phpstan": "^1.7.10"
},
"autoload": {
"files": [
"bootstrap.php"
]
},
"extra": {
"branch-alias": {
"dev-main": "0.13-dev"
}
},
"conflict": {
"phpstan/phpdoc-parser": "<1.2",
"rector/rector-prefixed": "*",
"rector/rector-phpunit": "*",
"rector/rector-symfony": "*",
"rector/rector-doctrine": "*",
"rector/rector-nette": "*",
"rector/rector-cakephp": "*",
"rector/rector-laravel": "*",
"rector/rector-phpoffice": "*"
},
"minimum-stability": "dev",
"prefer-stable": true
}