-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.51 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.51 KB
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
{
"require-dev": {
"armin/editorconfig-cli": "2.2.1",
"ergebnis/composer-normalize": "2.50.0",
"friendsofphp/php-cs-fixer": "3.94.2",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "2.1.40",
"phpstan/phpstan-phpunit": "2.0.16",
"phpstan/phpstan-symfony": "2.0.14",
"saschaegerer/phpstan-typo3": "3.0.1",
"shipmonk/composer-dependency-analyser": "1.8.4",
"ssch/typo3-rector": "3.12.1",
"typo3/coding-standards": "0.8.0"
},
"provide": {
"typo3/cms-core": "*",
"typo3/cms-extbase": "*"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": false,
"typo3/cms-composer-installers": false
},
"lock": false,
"sort-packages": true
},
"scripts": {
"analyze": [
"@analyze:dependencies"
],
"analyze:dependencies": "composer-dependency-analyser --composer-json ../../composer.json",
"fix": [
"@fix:composer",
"@fix:editorconfig",
"@fix:php"
],
"fix:composer": [
"@composer normalize",
"@composer normalize ../../composer.json"
],
"fix:editorconfig": "@lint:editorconfig --fix",
"fix:php": "php-cs-fixer fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:php"
],
"lint:composer": "@fix:composer --dry-run",
"lint:editorconfig": "ec",
"lint:php": "@fix:php --dry-run",
"migration": [
"@migration:rector"
],
"migration:rector": "rector process -c rector.php",
"sca": [
"@sca:php"
],
"sca:php": "phpstan analyse -c phpstan.neon"
}
}