forked from balazscsaba2006/craft3-cookiebot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.18 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
{
"name": "balazscsaba2006/cookiebot",
"description": "CookieBot integration into Craft CMS 3.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"cookiebot",
"cookie bot",
"gdpr"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/balazscsaba2006/craft3-cookiebot/issues?state=open",
"source": "https://github.com/balazscsaba2006/craft3-cookiebot",
"docs": "https://github.com/balazscsaba2006/craft3-cookiebot"
},
"license": "proprietary",
"authors": [
{
"name": "Human Direct",
"homepage": "https://humandirect.eu"
}
],
"require": {
"php": ">=8.2",
"craftcms/cms": "^5.0.0"
},
"autoload": {
"psr-4": {
"humandirect\\cookiebot\\": "src/"
}
},
"extra": {
"name": "Cookiebot",
"handle": "cookiebot",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/balazscsaba2006/craft3-cookiebot/master/CHANGELOG.md",
"class": "humandirect\\cookiebot\\Cookiebot",
"components": {
"services": "humandirect\\cookiebot\\services\\CookiebotService"
}
}
}