forked from abkekvw/mediaconsent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
59 lines (59 loc) · 1.36 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
{
"name": "jweiland/mediaconsent",
"type": "typo3-cms-extension",
"description": "This TYPO3 extension makes sure that content is only loaded if the user agrees cookie consent",
"homepage": "https://jweiland.net",
"keywords": ["DSGVO", "GDPR", "mediaconsent", "consent", "cookie"],
"license": "GPL-2.0-or-later",
"authors": [
{
"name": "Stefan Froemken",
"email": "[email protected]",
"role": "Lead Developer"
},
{
"name": "Hoja Mustaffa Abdul Latheef",
"email": "[email protected]",
"role": "Senior Developer"
}
],
"require": {
"typo3/cms-core": "^12.4"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.14",
"phpunit/phpunit": "^9.6",
"roave/security-advisories": "dev-latest",
"typo3/coding-standards": "^0.6",
"typo3/testing-framework": "^7.0.2"
},
"autoload": {
"psr-4": {
"JWeiland\\Mediaconsent\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"JWeiland\\Mediaconsent\\Tests\\": "Tests"
}
},
"replace": {
"arbkomekvw/mediaconsent": "self.version",
"typo3-ter/mediaconsent": "self.version"
},
"config": {
"sort-packages": true,
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true
}
},
"extra": {
"typo3/cms": {
"extension-key": "mediaconsent",
"web-dir": ".Build/public"
}
}
}