-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.1 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
{
"name": "davide-alghi/typo3-cookieconsent-plus",
"type": "typo3-cms-extension",
"description": "Cookie Consent Plus adds some new features to Dirk Persky's Cookie Consent extension (dp_cookieconsent).",
"keywords": [
"typo3",
"cookieconsent",
"gdpr",
"cookie",
"consent",
"privacy"
],
"homepage": "https://github.com/davide-alghi/typo3-cookieconsentplus",
"support": {
"issues": "https://github.com/davide-alghi/typo3-cookieconsentplus/issues"
},
"authors": [
{
"name": "Davide Alghi",
"role": "Developer",
"email": "[email protected]",
"homepage": "https://www.penguinable.it"
}
],
"license": "GPL-3.0-or-later",
"require": {
"php" : "^7.2 || ^7.3 || ^7.4",
"typo3/cms-core": ">=10.4.* <11.3.0",
"dp_cookieconsent": "11.0.*"
},
"replace": {
"typo3-ter/cookieconsent_plus": "self.version"
},
"autoload": {
"psr-4": {
"PAD\\CookieconsentPlus\\": "Classes"
}
},
"extra": {
"typo3/cms": {
"extension-key": "cookieconsent_plus",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
}
}
}