-
Notifications
You must be signed in to change notification settings - Fork 13
/
composer.json
40 lines (40 loc) · 1.14 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
{
"name": "mindshape/mindshape-cookie-consent",
"type": "typo3-cms-extension",
"description": "This extension provides functionality to create a customizable cookie consent for your website. It is developed for flexibility to be customized in accordance to your data security guidelines.",
"license": [
"GPL-2.0-or-later"
],
"authors": [
{
"name": "Daniel Dorndorf",
"role": "Developer"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/mindshape-GmbH/mindshape_cookie_consent/issues",
"source": "https://github.com/mindshape-GmbH/mindshape_cookie_consent",
"docs": "https://docs.typo3.org/p/mindshape/mindshape-cookie-consent/4.0/en-us/"
},
"require": {
"php": ">=8.1 <8.4",
"ext-json": "*",
"ext-pdo": "*",
"typo3/cms-core": "^12.4||^13.4",
"georgringer/numbered-pagination": "^2.1"
},
"autoload": {
"psr-4": {
"Mindshape\\MindshapeCookieConsent\\": "Classes"
}
},
"replace": {
"typo3-ter/mindshape-cookie-consent": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "mindshape_cookie_consent"
}
}
}