-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
37 lines (37 loc) · 937 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
36
37
{
"name": "craftcms/rector",
"description": "Rector sets to automate Craft CMS upgrades",
"require": {
"rector/rector": "^1.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"craftcms/cms": "^4.0.0|^5.0.0",
"craftcms/ecs": "dev-main",
"phpstan/phpstan": "^1.10",
"symfony/var-exporter": "^6.0"
},
"autoload": {
"psr-4": {
"craft\\rector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"craft\\rector\\tests\\": "tests"
}
},
"scripts": {
"phpstan": "phpstan --ansi --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --fix --ansi"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}