forked from craftcms/rector
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 973 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 973 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
31
32
33
34
35
36
37
{
"name": "fostercommerce/craft-rector",
"description": "A Foster Commmerce fork of Rector sets to automate Craft CMS upgrades",
"require": {
"rector/rector": "^2.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"craftcms/cms": "^4.0.0|^5.0.0",
"craftcms/ecs": "dev-main",
"phpstan/phpstan": "^2.1",
"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
}
}
}