forked from sabbelasichon/typo3-rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.48 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
{
"name": "ssch/typo3-rector",
"description": "Instant fixes for your TYPO3 code by using Rector.",
"license": "MIT",
"type": "library",
"authors": [
{ "name": "Sebastian Schreiber", "email": "[email protected]" }
],
"require": {
"php": "^7.2",
"rector/rector": "^0.7.21",
"typo3fluid/fluid": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^8.0|^9.0",
"symplify/easy-coding-standard": "^7.2"
},
"autoload": {
"psr-4": {
"Ssch\\TYPO3Rector\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Ssch\\TYPO3Rector\\Tests\\": "tests",
"Ssch\\TYPO3Rector\\PHPStan\\": "utils/phpstan/src"
},
"classmap": [".code"]
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"update-with-dependencies": true,
"sort-packages": true
},
"scripts": {
"check-style": "vendor/bin/ecs check --ansi",
"fix-style": "vendor/bin/ecs check --fix --ansi",
"analyze": "vendor/bin/phpstan analyse --memory-limit=-1 --ansi",
"test": "vendor/bin/phpunit",
"docs": "vendor/bin/rector dump-rectors src/Rector > docs/AllRectorsOverview.md",
"rector": "vendor/bin/rector rectify --dry-run --ansi"
},
"scripts-descriptions": {
"docs": "Regenerate descriptions of all Rectors to docs/AllRectorsOverview.md file"
}
}