-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
65 lines (65 loc) · 1.86 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "erhaweb/klaro-consent-manager",
"type": "typo3-cms-extension",
"description": "Functionally complete, flexible TYPO3 integration of Klaro! Consent Management by KIProtect GmbH, a powerful tool that protects your visitors' privacy and data.",
"license": "GPL-2.0-or-later",
"require": {
"typo3/cms-core": "^12.4 || ^13.0",
"php": "^8.1 || ^8.2 || ^8.3",
"ext-pdo": "*"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"typo3/testing-framework": "^6.9.0"
},
"authors": [
{
"name": "Eric Harrer",
"role": "Developer",
"email": "info@eric-harrer.de",
"homepage": "https://www.eric-harrer.de"
}
],
"keywords": [
"TYPO3",
"extension",
"Consent Manager",
"Klaro",
"GDPR"
],
"homepage": "https://extensions.typo3.org/extension/klaro_consent_manager",
"support": {
"source": "https://github.com/ErHaWeb/klaro_consent_manager",
"issues": "https://github.com/ErHaWeb/klaro_consent_manager/issues",
"docs": "https://github.com/ErHaWeb/klaro_consent_manager#readme"
},
"funding": [
{
"type": "other",
"url:": "https://www.paypal.com/paypalme/ebode"
}
],
"autoload": {
"psr-4": {
"ErHaWeb\\KlaroConsentManager\\": "Classes"
}
},
"replace": {
"typo3-ter/klaro-consent-manager": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin"
},
"scripts": {
"post-autoload-dump": [
"TYPO3\\TestingFramework\\Composer\\ExtensionTestEnvironment::prepare"
]
},
"extra": {
"typo3/cms": {
"web-dir": ".Build/public",
"extension-key": "klaro_consent_manager"
}
}
}