-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.98 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.98 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
63
64
65
66
67
68
69
70
71
72
73
74
{
"authors": [
{
"name": "Konrad Michalik",
"email": "hej@konradmichalik.dev",
"role": "Maintainer"
}
],
"require-dev": {
"armin/editorconfig-cli": "^2.2.1",
"ergebnis/composer-normalize": "^2.51.0",
"helmich/typo3-typoscript-lint": "^3.3.0",
"konradmichalik/php-cs-fixer-preset": "^0.1.1",
"konradmichalik/php-doc-block-header-fixer": "^0.3.3",
"konradmichalik/phpstan-typo3-preset": "^0.3",
"move-elevator/composer-translation-validator": "^1.4.0",
"phpstan/phpstan-phpunit": "^1.0 || ^2.0",
"psr/http-message": "^1.0 || ^2.0",
"shipmonk/composer-dependency-analyser": "1.8.4",
"ssch/typo3-rector": "^2.10 || ^3.0",
"typo3/coding-standards": "^0.7 || ^0.8"
},
"replace": {
"typo3/cms-core": "*",
"typo3/cms-extbase": "*"
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"move-elevator/composer-translation-validator": true,
"php-http/discovery": 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 vendor/bin/php-cs-fixer --config=.php-cs-fixer.php fix",
"lint": [
"@lint:composer",
"@lint:editorconfig",
"@lint:language",
"@lint:php",
"@lint:typoscript"
],
"lint:composer": "@fix:composer --dry-run",
"lint:editorconfig": "ec --git-only",
"lint:language": "@composer validate-translations ./../../Resources/Private/Language",
"lint:php": "@fix:php --dry-run",
"migration": [
"@migration:rector"
],
"migration:rector": "rector process -c rector.php",
"sca": [
"@sca:php"
],
"sca:php": "phpstan analyse --memory-limit=2G"
}
}