-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
41 lines (41 loc) · 950 Bytes
/
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
{
"name": "studiomitte/klaro",
"keywords": [
"TYPO3",
"extension",
"consent",
"cookies",
"gdpr",
"dsgvo"
],
"authors": [
{
"name": "Georg Ringer",
"role": "Developer",
"homepage": "https://studiomitte.com"
}
],
"type": "typo3-cms-extension",
"description": "Cookie consent solution following the GDPR by using the solution Klaro",
"homepage": "https://studiomitte.com",
"license": [
"GPL-2.0-or-later"
],
"require": {
"php": "^7.4 || ^8.0 || ^8.1 || ^8.2 || ^8.3",
"typo3/cms-core": "^9 || ^10 || ^11 || ^12 || ^13"
},
"autoload": {
"psr-4": {
"StudioMitte\\Klaro\\": "Classes"
}
},
"replace": {
"typo3-ter/klaro": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "klaro"
}
}
}