-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·38 lines (38 loc) · 1.01 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
{
"name": "andersundsehr/group_access",
"description": "Allows to limit extbase actions ba frontend user group",
"type": "typo3-cms-extension",
"license": [
"GPL-2.0-or-later"
],
"require": {
"typo3/cms-core": "^11.5 || ^12.0",
"php": "~8.1 || ~8.2"
},
"autoload": {
"psr-4": {
"AUS\\GroupAccess\\": "Classes/"
}
},
"extra": {
"typo3/cms": {
"extension-key": "group_access"
}
},
"require-dev": {
"pluswerk/grumphp-config": "^6",
"typo3/cms-extbase": "^11.5 || ^12.0",
"saschaegerer/phpstan-typo3": "*",
"phpstan/extension-installer": "*",
"ssch/typo3-rector": "^1.1.3"
},
"config": {
"allow-plugins": {
"typo3/cms-composer-installers": true,
"typo3/class-alias-loader": true,
"phpro/grumphp": true,
"pluswerk/grumphp-config": true,
"phpstan/extension-installer": true
}
}
}