-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathcomposer.json
More file actions
230 lines (230 loc) · 8.69 KB
/
composer.json
File metadata and controls
230 lines (230 loc) · 8.69 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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
{
"name": "oliverklee/seminars",
"description": "TYPO3 extension that allows you to create and manage a list of seminars, workshops, lectures, theater performances and other events, allowing front-end users to sign up. FE users also can create and edit events.",
"license": "GPL-2.0-or-later",
"type": "typo3-cms-extension",
"keywords": [
"seminars",
"workshops",
"event",
"registration",
"education",
"talks"
],
"authors": [
{
"name": "Oliver Klee",
"email": "typo3-coding@oliverklee.de",
"homepage": "https://www.oliverklee.de",
"role": "developer"
}
],
"homepage": "https://www.oliverklee.de/typo3-services/seminarmanager/",
"support": {
"issues": "https://github.com/oliverklee-de/seminars/issues",
"source": "https://github.com/oliverklee-de/seminars"
},
"require": {
"php": "^7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0",
"ext-json": "*",
"doctrine/dbal": "^2.13.8 || ^3.9",
"oliverklee/feuserextrafields": "^6.7.1 || ^7.0",
"oliverklee/oelib": "^6.3.1",
"pelago/emogrifier": "^8.1.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0.1 || ^2.0",
"psr/log": "^1.0 || ^2.0 || ^3.0",
"sjbr/static-info-tables": "^11.5.5 || ^12.4.3",
"symfony/mailer": "^5.4 || ^6.4 || ^7.0",
"symfony/mime": "^5.4 || ^6.4 || ^7.0",
"symfony/polyfill-php80": "^1.32.0",
"typo3/cms-backend": "^11.5.41",
"typo3/cms-core": "^11.5.41",
"typo3/cms-extbase": "^11.5.41",
"typo3/cms-fluid": "^11.5.41",
"typo3/cms-frontend": "^11.5.41",
"typo3/cms-install": "^11.5 || ^12.4",
"typo3fluid/fluid": "^2.7.4 || ^4.0"
},
"require-dev": {
"ergebnis/composer-normalize": "2.52.0",
"friendsofphp/php-cs-fixer": "3.95.2",
"helmich/typo3-typoscript-lint": "2.5.2 || 3.3.0",
"php-parallel-lint/php-parallel-lint": "1.4.0",
"phpstan/extension-installer": "1.4.3",
"phpstan/phpstan": "1.12.32",
"phpstan/phpstan-phpunit": "1.4.2",
"phpstan/phpstan-strict-rules": "1.6.2",
"phpunit/phpunit": "9.6.34",
"rector/type-perfect": "1.0.0",
"saschaegerer/phpstan-typo3": "1.10.2",
"squizlabs/php_codesniffer": "4.0.1",
"ssch/typo3-rector": "2.13.1",
"ssch/typo3-rector-testing-framework": "2.0.1",
"symfony/console": "^5.4 || ^6.4 || ^7.4",
"symfony/translation": "^5.4 || ^6.4 || ^7.4",
"symfony/yaml": "^5.4 || ^6.4 || ^7.4",
"typo3/cms-extensionmanager": "^11.5 || ^12.4",
"typo3/cms-fluid-styled-content": "^11.5 || ^12.4",
"typo3/cms-scheduler": "^11.5 || ^12.4",
"typo3/coding-standards": "0.6.1",
"typo3/testing-framework": "7.1.1"
},
"replace": {
"typo3-ter/seminars": "self.version"
},
"conflict": {
"guzzlehttp/promises": "< 2.3.0",
"thecodingmachine/safe": "< 1.3.3",
"typo3/class-alias-loader": "< 1.2.0",
"typo3/html-sanitizer": "2.3.0",
"typo3/phar-stream-wrapper": "< 3.1.8",
"webmozart/assert": "< 1.12.1"
},
"suggest": {
"oliverklee/onetimeaccount": "for event registration without an explicit FE login",
"oliverklee/seminars_premium": "for premium functionality"
},
"prefer-stable": true,
"autoload": {
"psr-4": {
"OliverKlee\\Seminars\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"OliverKlee\\Seminars\\Tests\\": "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
},
"bin-dir": ".Build/bin",
"lock": false,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"vendor-dir": ".Build/vendor"
},
"extra": {
"branch-alias": {
"dev-main": "6.0.x-dev"
},
"typo3/cms": {
"app-dir": ".Build",
"extension-key": "seminars",
"web-dir": ".Build/public"
}
},
"scripts": {
"check:composer:normalize": "@composer normalize --no-check-lock --dry-run",
"check:coverage": [
"@check:coverage:unit",
"@check:coverage:functional"
],
"check:coverage:functional": [
"@coverage:create-directories",
"find 'Tests/Functional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running functional test suite {}\"; .Build/bin/phpunit -c Build/phpunit/FunctionalTests.xml --whitelist Classes --coverage-php=\".Build/coverage/{}.cov\" {}';"
],
"check:coverage:legacy-functional": [
"@coverage:create-directories",
"find 'Tests/LegacyFunctional' -wholename '*Test.php' | parallel --gnu 'echo; echo \"Running legacy functional test suite {}\"; .Build/bin/phpunit -c Build/phpunit/FunctionalTests.xml --whitelist Classes --coverage-php=\".Build/coverage/{}.cov\" {}';"
],
"check:coverage:merge": [
"@coverage:create-directories",
"tools/phpcov merge --clover=./build/logs/clover.xml ./.Build/coverage/"
],
"check:coverage:unit": [
"@coverage:create-directories",
"phpunit -c Build/phpunit/UnitTests.xml --whitelist Classes --coverage-php=.Build/coverage/unit.cov Tests/Unit"
],
"check:php": [
"@check:php:lint",
"@check:php:sniff",
"@check:php:cs-fixer",
"@check:php:stan"
],
"check:php:cs-fixer": "php-cs-fixer fix --config ./Build/php-cs-fixer/config.php -v --dry-run --diff",
"check:php:lint": "parallel-lint *.php Classes Configuration Documentation Tests",
"check:php:rector": "rector process --dry-run --config=./Build/rector/config.php",
"check:php:sniff": "phpcs --standard=./Build/phpcs/config.xml *.php Classes Documentation Configuration Tests",
"check:php:stan": "phpstan --no-progress -v --configuration=Build/phpstan/phpstan.neon",
"check:static": [
"@check:composer:normalize",
"@check:php:lint",
"@check:php:rector",
"@check:php:sniff",
"@check:php:stan",
"@check:php:cs-fixer",
"@check:ts:lint",
"@check:xliff:lint"
],
"check:tests:unit": "phpunit -c Build/phpunit/UnitTests.xml",
"check:typoscript:lint": "typoscript-lint -c ./Build/typoscript-lint/config.yml --ansi -n --fail-on-warnings -vvv Configuration/TypoScript Tests/Functional/Controller/Fixtures/TypoScript",
"check:xliff:lint": "php Build/Scripts/xliffLint.sh lint:xliff Resources/Private/Language",
"coverage:create-directories": "mkdir -p build/logs .Build/coverage",
"fix": [
"@fix:composer:normalize",
"@fix:php"
],
"fix:composer:normalize": "@composer normalize --no-check-lock",
"fix:php": [
"@fix:php:rector",
"@fix:php:cs-fixer",
"@fix:php:sniff"
],
"fix:php:cs-fixer": "php-cs-fixer fix --config ./Build/php-cs-fixer/config.php",
"fix:php:rector": "rector process --config=./Build/rector/config.php",
"fix:php:sniff": "phpcbf --standard=./Build/phpcs/config.xml *.php Classes Configuration Documentation Tests",
"phpstan:baseline": "phpstan --generate-baseline=Build/phpstan/phpstan-baseline.neon --allow-empty-baseline --configuration=Build/phpstan/phpstan.neon",
"prepare-release": [
"rm -rf .Build",
"rm -rf .github",
"rm -rf .idea",
"rm -rf .phive",
"rm -rf Build",
"rm -rf Tests",
"rm -rf var",
"rm .editorconfig",
"rm .gitattributes",
"rm .gitignore",
"rm crowdin.yml"
]
},
"scripts-descriptions": {
"check:composer:normalize": "Checks the composer.json.",
"check:coverage": "Generates the code coverage report for unit and functional tests.",
"check:coverage:functional": "Generates the code coverage report for functional tests.",
"check:coverage:legacy-functional": "Generates the code coverage report for legacy functional tests.",
"check:coverage:merge": "Merges the code coverage reports for unit and functional tests.",
"check:coverage:unit": "Generates the code coverage report for unit tests.",
"check:php": "Runs all static checks for the PHP 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:sniff": "Checks the code style with PHP_CodeSniffer (PHPCS).",
"check:php:stan": "Checks the PHP types using PHPStan.",
"check:static": "Runs all static code checks (syntax, style, types).",
"check:tests:unit": "Runs the unit tests.",
"check:typoscript:lint": "Lints all TypoScript files.",
"check:xliff:lint": "Lints the XLIFF files.",
"coverage:create-directories": "Creates the directories needed for recording and merging the code coverage reports.",
"fix": "Runs all automatic code style fixes.",
"fix:composer:normalize": "Normalizes composer.json file content.",
"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.",
"fix:php:sniff": "Fixes the code style with PHP_CodeSniffer.",
"phpstan:baseline": "Updates the PHPStan baseline file to match the code.",
"prepare-release": "Removes development-only files in preparation of a TER release."
}
}