-
-
Notifications
You must be signed in to change notification settings - Fork 63
/
composer.json
133 lines (133 loc) · 4.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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
{
"name": "ssch/typo3-rector",
"description": "Instant fixes for your TYPO3 PHP code by using Rector.",
"license": "MIT",
"type": "rector-extension",
"keywords": [
"dev",
"rector",
"upgrade",
"refactoring",
"automation",
"migration"
],
"authors": [
{
"name": "Sebastian Schreiber",
"email": "[email protected]",
"role": "Founder and lead developer"
},
{
"name": "Henrik Elsner"
},
{
"name": "Simon Schaufelberger",
"role": "Developer"
}
],
"homepage": "https://www.typo3-rector.com/",
"support": {
"issues": "https://github.com/sabbelasichon/typo3-rector/issues",
"chat": "https://typo3.slack.com/archives/C019R5LAA6A",
"source": "https://github.com/sabbelasichon/typo3-rector",
"docs": "https://github.com/sabbelasichon/typo3-rector/tree/main/docs"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"league/flysystem": "^2.0 || ^3.0",
"league/flysystem-memory": "^2.0 || ^3.0",
"nette/utils": "^3.2.10 || ^4.0.4",
"nikic/php-parser": "^4.18.0",
"phpstan/phpstan": "^1.10.56",
"rector/rector": "^1.1.0",
"symfony/console": "^5.4 || ^6.4 || ^7.0",
"symfony/filesystem": "^5.4 || ^6.4 || ^7.0",
"symfony/finder": "^5.4 || ^6.4 || ^7.0",
"symfony/polyfill-php80": "^1.28.0",
"symfony/polyfill-php81": "^1.28.0",
"symfony/string": "^5.4 || ^6.4 || ^7.0",
"webmozart/assert": "^1.11.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42.0",
"php-parallel-lint/php-parallel-lint": "^1.3.2",
"phpstan/extension-installer": "^1.3.1",
"phpstan/phpstan-deprecation-rules": "^1.1.4",
"phpstan/phpstan-phpunit": "^1.3.16",
"phpunit/phpunit": "^9.6.17 || ^10.0",
"symfony/config": "^5.0 || ^6.0 || ^7.0",
"symfony/dependency-injection": "^5.4.36 || ^6.4.2 || ^7.0.2",
"symfony/http-kernel": "^5.4.37 || ^6.4.2 || ^7.0.2",
"symplify/easy-coding-standard": "^12.1.14"
},
"suggest": {
"ext-pdo": "*",
"ssch/typo3-debug-dump-pass": "^0.0.1"
},
"autoload": {
"psr-4": {
"Ssch\\TYPO3Rector\\": [
"src",
"rules"
],
"Ssch\\TYPO3Rector\\PHPStan\\": "utils/phpstan/src"
}
},
"autoload-dev": {
"psr-4": {
"Ssch\\TYPO3Rector\\Generator\\": "utils/generator/src",
"Ssch\\TYPO3Rector\\PHPStan\\Tests\\": "utils/phpstan/tests",
"Ssch\\TYPO3Rector\\Tests\\": "tests"
},
"classmap": [
"stubs"
],
"exclude-from-classmap": [
"**.php.inc"
]
},
"bin": [
"bin/typo3-init"
],
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
},
"optimize-autoloader": true,
"platform-check": false,
"sort-packages": true,
"update-with-dependencies": true
},
"extra": {
"branch-alias": {
"dev-main": "2.0-dev"
},
"rector": {
"includes": [
"config/config.php"
]
}
},
"scripts": {
"ci:check-style": "@php ecs check --ansi",
"ci:check-typo3-rector": "@php vendor/bin/rector process src/Helper --config templates/rector.php --dry-run --ansi",
"ci:composer:normalize": "@composer normalize --no-check-lock --dry-run",
"ci:php:lint": "@php parallel-lint src config tests",
"ci:php:stan": "@php phpstan analyse --memory-limit=-1 --ansi",
"ci:rector": "@php rector process --dry-run --ansi",
"ci:tests:unit": "@php phpunit",
"docs:generate": "@php rule-doc-generator generate rules --output-file docs/all_rectors_overview.md --ansi --categorize 2",
"fix:composer:normalize": "@composer normalize --no-check-lock",
"fix:rector": "@php rector process --ansi",
"fix:style": "@php ecs check --fix --ansi",
"local:contribute": [
"@fix:rector",
"@fix:style",
"@ci:php:stan",
"@phpstan:baseline"
],
"phpstan:baseline": "@php vendor/bin/phpstan analyse --generate-baseline --memory-limit=-1 --ansi --allow-empty-baseline"
}
}