-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
54 lines (54 loc) · 1.25 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "frosh/shopware-rector",
"description": "Shopware specific Rector",
"type": "rector-extension",
"license": "mit",
"require": {
"php": "^8.1",
"rector/rector": "~2.0.0"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symplify/easy-coding-standard": "~11.2",
"friendsofphp/php-cs-fixer": "^3.57"
},
"conflict": {
"rector/rector": "<2.0"
},
"autoload": {
"psr-4": {
"Frosh\\Rector\\": "src"
}
},
"autoload-dev": {
"classmap": ["stubs"],
"psr-4": {
"Frosh\\Rector\\Tests\\": "tests"
},
"exclude-from-classmap": [
"**.php.inc"
]
},
"config": {
"optimize-autoloader": true,
"update-with-dependencies": true,
"sort-packages": true,
"platform": {
"php": "8.1.99"
}
},
"extra": {
"rector": {
"includes": [
"config/config.php"
]
}
},
"scripts": {
"phpunit": "phpunit",
"csfix": "php-cs-fixer fix",
"docs": [
"vendor/bin/rule-doc-generator generate src --output-file docs/rector_rules_overview.md --ansi"
]
}
}