-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.35 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
48
49
50
{
"name": "xima/xm-goaccess",
"description": "Integrates goaccess.io into TYPO3",
"type": "typo3-cms-extension",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Maik Schneider",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.0",
"typo3/cms-core": "^11.5 || ^12.0",
"typo3/cms-dashboard": "^11.5 || ^12.0"
},
"require-dev": {
"typo3/cms-base-distribution": "^12.0",
"phpmd/phpmd": "^2.6.0",
"squizlabs/php_codesniffer": "^3.4",
"friendsofphp/php-cs-fixer": "^3.3",
"vimeo/psalm": "^4.0",
"phpstan/phpstan": "^1.6",
"helhum/typo3-console": "^8.1"
},
"extra": {
"typo3/cms": {
"extension-key": "xm_goaccess"
}
},
"autoload": {
"psr-4": {
"Xima\\XmGoaccess\\": "Classes"
}
},
"scripts": {
"php:fixer": "vendor/bin/php-cs-fixer --config=php-cs-fixer.php fix",
"php:stan": "php vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline",
"ci:php:lint": "find *.php Classes Configuration -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l",
"ci:php:fixer": "vendor/bin/php-cs-fixer --config=php-cs-fixer.php fix --dry-run -v --show-progress=dots Classes Configuration",
"ci:php:stan": "vendor/bin/phpstan --no-progress"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
}
}