-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.03 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.03 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
{
"name": "localizationteam/localizer-supertext",
"type": "typo3-cms-extension",
"description": "Supertext API for the TYPO3 Localizer",
"homepage": "https://cybercraft.gmbh",
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3 CMS"],
"version": "10.2.0",
"require": {
"typo3/cms-core": "^10.4",
"localizationteam/localizer": "^10.4.6"
},
"autoload": {
"psr-4": {
"Localizationteam\\LocalizerSupertext\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "localizer_supertext",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.1.0",
"phpstan/phpstan": "^1.1"
},
"scripts": {
"ci:php:php-cs-fixer:dry": [
"php-cs-fixer fix --allow-risky=yes --dry-run -vvv --diff"
],
"ci:php:lint": "find *.php Classes Configuration Tests -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l"
}
}