forked from sabbelasichon/typo3-rector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 2.13 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
55
56
57
58
59
60
61
62
63
{
"name": "ssch/typo3-rector",
"description": "Instant fixes for your TYPO3 code by using Rector.",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Sebastian Schreiber",
"email": "breakpoint@schreibersebastian.de"
}
],
"require": {
"php": "^7.3|^8.0",
"phpstan/phpstan": "^0.12.64",
"rector/rector": "0.9.9"
},
"require-dev": {
"captainhook/captainhook": "^5.4",
"captainhook/plugin-composer": "^5.2",
"phpunit/phpunit": "^8.0|^9.0",
"symplify/coding-standard": "^9.0.17",
"symplify/easy-coding-standard": "^9.0.17",
"symplify/phpstan-extensions": "^9.0.17"
},
"autoload": {
"psr-4": {
"Ssch\\TYPO3Rector\\": "src",
"Ssch\\TYPO3Rector\\PHPStan\\": "utils/phpstan/src"
}
},
"bin": [
"bin/typo3-rector"
],
"autoload-dev": {
"psr-4": {
"Ssch\\TYPO3Rector\\Generator\\": "utils/generator/src",
"Ssch\\TYPO3Rector\\Generator\\Tests\\": "utils/generator/tests",
"Ssch\\TYPO3Rector\\Tests\\": "tests",
"Ssch\\TYPO3Rector\\PHPStan\\Tests\\": "utils/phpstan/tests",
"Ssch\\TYPO3Rector\\Rules\\Tests\\": "utils/rules/tests",
"Ssch\\TYPO3Rector\\Rules\\": "utils/rules/src"
},
"exclude-from-classmap": [
"**.php.inc"
]
},
"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 --error-format symplify",
"test": "vendor/bin/phpunit",
"docs": "vendor/bin/rule-doc-generator generate src/Rector --output-file docs/all_rectors_overview.md --ansi",
"rector": "vendor/bin/rector rectify --dry-run --ansi --match-git-diff",
"fix-rector": "vendor/bin/rector rectify --ansi"
},
"minimum-stability": "dev",
"prefer-stable": true
}