-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
45 lines (45 loc) · 1.07 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
{
"name": "la-haute-societe/craft-tarteaucitron",
"description": "Manage your sites' cookies with this tarteaucitron.js Craft CMS 3 integration",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"tarteaucitron",
"rgpd",
"gdpr"
],
"license": "proprietary",
"authors": [
{
"name": "La Haute Société",
"homepage": "https://www.lahautesociete.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"craftcms/cms": "^4.0.0"
},
"autoload": {
"psr-4": {
"lhs\\tarteaucitron\\": "src/"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/la-haute-societe/craft-tarteaucitron/issues"
},
"extra": {
"name": "tarteaucitron.js",
"handle": "tarteaucitron",
"developer": "La Haute Société",
"developerUrl": "https://www.lahautesociete.com/",
"class": "lhs\\tarteaucitron\\Tarteaucitron",
"components": {
"services": "lhs\\tarteaucitron\\services\\TarteaucitronService"
}
}
}