forked from nilsenpaul/craft-complete-cookie-consent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
39 lines (39 loc) · 1.27 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
{
"name": "nilsenpaul/complete-cookie-consent",
"description": "This plugin provides a complete and easy way to let your site's visitors choose the cookies you're allowed to set.",
"version": "1.0.8.1",
"type": "craft-plugin",
"license": "proprietary",
"authors": [
{
"name": "Paul Verheul",
"homepage": "https://nilsenpaul.nl"
}
],
"support": {
"email": "info@nilsenpaul.nl",
"issues": "https://github.com/nilsenpaul/craft-complete-cookie-consent/issues?state=open",
"source": "https://github.com/nilsenpaul/craft-complete-cookie-consent",
"docs": "https://github.com/nilsenpaul/craft-complete-cookie-consent/blob/master/README.md"
},
"require": {
"craftcms/cms": "^3.0.0",
"geoip2/geoip2": "~2.0"
},
"autoload": {
"psr-4": {
"nilsenpaul\\cookieconsent\\": "src/"
}
},
"extra": {
"handle": "complete-cookie-consent",
"name": "Complete Cookie Consent",
"hasSettings": true,
"documentationUrl": "https://github.com/nilsenpaul/craft-complete-cookie-consent/blob/master/README.md",
"components": {
"consent": "nilsenpaul\\cookieconsent\\services\\Consent",
"cookies": "nilsenpaul\\cookieconsent\\services\\Cookies",
"geo": "nilsenpaul\\cookieconsent\\services\\Geo"
}
}
}