-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
42 lines (42 loc) · 1.04 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
{
"name": "supseven/supi",
"description": "Cookie Consent popover; easy, yet powerful",
"license": "GPL-3.0-or-later",
"type": "typo3-cms-extension",
"autoload": {
"psr-4": {
"Supseven\\Supi\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"Supseven\\Supi\\Tests\\": "Tests/"
}
},
"require": {
"php": "^8.3",
"typo3/cms-backend": "^13.4",
"typo3/cms-core": "^13.4",
"typo3/cms-extbase": "^13.4",
"typo3/cms-fluid": "^13.4",
"typo3/cms-frontend": "^13.4"
},
"require-dev": {
"phpunit/phpunit": "^10",
"friendsofphp/php-cs-fixer": "^3.0",
"mikey179/vfsstream": "^1.6"
},
"extra": {
"typo3/cms": {
"web-dir": "vendor/_www/",
"extension-key": "supi"
},
"installer-name": "supi"
},
"config": {
"allow-plugins": {
"typo3/class-alias-loader": false,
"typo3/cms-composer-installers": false
}
}
}