-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
169 lines (169 loc) · 5.76 KB
/
composer.json
File metadata and controls
169 lines (169 loc) · 5.76 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
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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
{
"name": "oliverklee/typo3-testing-distribution",
"description": "TYPO3 CMS distribution for testing extensions",
"license": "GPL-2.0-or-later",
"type": "project",
"authors": [
{
"name": "Oliver Klee",
"homepage": "https://www.oliverklee.de",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/oliverklee-de/TYPO3-testing-distribution/issues",
"source": "https://github.com/oliverklee-de/TYPO3-testing-distribution"
},
"require": {
"php": "^8.2",
"georgringer/autoswitchtolistview": "^3.0.0",
"georgringer/news": "^12.3",
"helhum/typo3-console": "^8.1.0",
"oliverklee/feuserextrafields": "dev-main",
"oliverklee/site-dev": "@dev",
"ttn/tea": "dev-main",
"typo3/cms-adminpanel": "^13.4",
"typo3/cms-belog": "^13.4",
"typo3/cms-beuser": "^13.4",
"typo3/cms-core": "^13.4",
"typo3/cms-dashboard": "^13.4",
"typo3/cms-felogin": "^13.4",
"typo3/cms-filelist": "^13.4",
"typo3/cms-fluid-styled-content": "^13.4",
"typo3/cms-form": "^13.4",
"typo3/cms-impexp": "^13.4",
"typo3/cms-indexed-search": "^13.4",
"typo3/cms-info": "^13.4",
"typo3/cms-lowlevel": "^13.4",
"typo3/cms-recycler": "^13.4",
"typo3/cms-redirects": "^13.4",
"typo3/cms-reports": "^13.4",
"typo3/cms-rte-ckeditor": "^13.4",
"typo3/cms-scheduler": "^13.4",
"typo3/cms-seo": "^13.4",
"typo3/cms-setup": "^13.4",
"typo3/cms-tstemplate": "^13.4",
"typo3/cms-viewpage": "^13.4",
"typo3/cms-workspaces": "^13.4",
"typo3/minimal": "^13.4"
},
"require-dev": {
"ergebnis/composer-normalize": "2.52.0",
"friendsofphp/php-cs-fixer": "3.95.2",
"helmich/typo3-typoscript-lint": "3.3.0",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "2.1.54",
"phpstan/phpstan-phpunit": "2.0.16",
"phpstan/phpstan-strict-rules": "2.0.11",
"phpunit/phpunit": "11.5.52",
"saschaegerer/phpstan-typo3": "2.1.1",
"seld/jsonlint": "1.11.0",
"ssch/typo3-rector": "3.14.1",
"ssch/typo3-rector-testing-framework": "3.0.0",
"symfony/yaml": "7.4.1",
"typo3/coding-standards": "0.8.0",
"typo3/testing-framework": "9.5.0"
},
"conflict": {
"georgringer/autoswitchtolistview": "3.1.0"
},
"repositories": [
{
"type": "path",
"url": "src/extensions/*"
}
],
"prefer-stable": true,
"autoload-dev": {
"psr-4": {
"OliverKlee\\SiteDev\\Tests\\": "src/extensions/site-dev/Tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
},
"audit": {
"block-insecure": false,
"block-abandoned": false
},
"lock": false,
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"scripts": {
"post-autoload-dump": [
"@typo3-cms-scripts"
],
"check:composer:normalize": [
"@composer normalize --dry-run --no-check-lock",
"@composer normalize --dry-run --no-check-lock src/extensions/site-dev/composer.json"
],
"check:json:lint": "find . -path '*/public/*' ! -path '*/var/*' ! -path '*/vendor/*' -name '*.json' | xargs -r php vendor/bin/jsonlint -q",
"check:php:cs-fixer": "php-cs-fixer fix --config .php-cs-fixer.php -v --dry-run --using-cache no --diff",
"check:php:lint": "parallel-lint *.php .*.php config src/extensions/site-dev",
"check:php:rector": "rector process --dry-run",
"check:php:stan": "phpstan --no-progress",
"check:static": [
"@check:composer:normalize",
"@check:json:lint",
"@check:php:lint",
"@check:php:stan",
"@check:php:cs-fixer",
"@check:typoscript:lint",
"@check:yaml:lint"
],
"check:tests": [
"@check:tests:unit",
"@check:tests:functional"
],
"check:tests:functional": "phpunit -c config/FunctionalTests.xml",
"check:tests:unit": "phpunit -c config/UnitTests.xml",
"check:typoscript:lint": "typoscript-lint -c config/TypoScriptLint.yaml --ansi -n --fail-on-warnings -vvv src/extensions/site-dev/Configuration/*.tsconfig src/extensions/site-dev/Configuration/TypoScript",
"check:yaml:lint": "find .ddev .github config src/extensions/site-dev -name '*.yml' -o -name '*.yaml' | xargs php ./vendor/bin/yaml-lint",
"fix": [
"@fix:composer",
"@fix:php"
],
"fix:composer": [
"@composer normalize --no-check-lock",
"@composer normalize --no-check-lock src/extensions/site-dev/composer.json"
],
"fix:php": [
"@fix:php:rector",
"@fix:php:cs-fixer"
],
"fix:php:cs-fixer": "php-cs-fixer fix --config .php-cs-fixer.php",
"fix:php:rector": "rector process",
"phpstan:baseline": "phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline",
"typo3-cms-scripts": [
"typo3 install:fixfolderstructure"
]
},
"scripts-descriptions": {
"check:composer:normalize": "Checks the formatting and structure of the composer.json.",
"check:json:lint": "Lints the JSON files.",
"check:php:cs-fixer": "Checks the code style with the PHP Coding Standards Fixer (PHP-CS-Fixer).",
"check:php:lint": "Lints the PHP files for syntax errors.",
"check:php:rector": "Checks for code for changes by Rector.",
"check:php:stan": "Checks the PHP types using PHPStan.",
"check:static": "Runs all static code checks (syntax, style, types).",
"check:tests": "Runs all tests (unit and functional).",
"check:tests:functional": "Runs the functional tests.",
"check:tests:unit": "Runs the unit tests.",
"check:typoscript:lint": "Lints the TypoScript files.",
"check:yaml:lint": "Lints the YAML files for syntax errors.",
"fix": "Reformats the code.",
"fix:composer": "Reformats and sorts the composer.json files.",
"fix:php": "Runs all fixers for the PHP code.",
"fix:php:cs-fixer": "Fixes the code style with PHP-CS-Fixer.",
"fix:php:rector": "Updates the code with Rector.",
"phpstan:baseline": "Updates the PHPStan baseline file to match the code."
}
}