-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 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
48
49
50
51
52
53
54
55
56
{
"name": "xima/xima-typo3-recordlist",
"type": "typo3-cms-extension",
"description": "Advanced record list with simple workspace integration",
"homepage": "https://www.xima.de",
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Maik Schneider",
"role": "Developer",
"email": "maik.schneider@xima.de"
}
],
"keywords": [
"typo3",
"typo3-cms-extension"
],
"require": {
"php": "^8.0",
"typo3/cms-core": ">=11.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"typo3/cms-base-distribution": "^11.4",
"phpstan/phpstan": "^1.6",
"bk2k/bootstrap-package": "dev-master",
"clue/phar-composer": "^1.0",
"friendsofphp/php-cs-fixer": "^3.12",
"saschaegerer/phpstan-typo3": "^1.8",
"phpstan/extension-installer": "^1.3"
},
"autoload": {
"psr-4": {
"Xima\\XimaTypo3Recordlist\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": "public",
"extension-key": "xima_typo3_recordlist"
}
},
"config": {
"vendor-dir": "vendor",
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"php:fixer": "./vendor/bin/php-cs-fixer --config=php-cs-fixer.php fix",
"php:stan": "./vendor/bin/phpstan --generate-baseline=phpstan-baseline.neon --allow-empty-baseline"
}
}