-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
47 lines (47 loc) · 1.37 KB
/
composer.json
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
{
"name": "localizationteam/localizer-beebox",
"type": "typo3-cms-extension",
"description": "Beebox API for the TYPO3 localizer",
"homepage": "https://cybercraft.gmbh",
"license": ["GPL-2.0-or-later"],
"keywords": ["TYPO3 CMS"],
"version": "10.0.0",
"require": {
"typo3/cms-core": "^10.4",
"typo3/cms-extensionmanager": "^10.4",
"typo3/cms-scheduler": "^10.4",
"typo3/cms-install": "^10.4",
"typo3/cms-backend": "^10.4",
"typo3/cms-lang": "^10.4",
"localizationteam/localizer": "^10.0 || dev-master",
"ext-pdo": "*",
"ext-json": "*",
"ext-zip": "*"
},
"autoload": {
"psr-4": {
"Localizationteam\\LocalizerBeebox\\": "Classes/"
}
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"extra": {
"typo3/cms": {
"extension-key": "localizer_beebox",
"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"
}
}