-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
44 lines (44 loc) · 1.08 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
{
"name": "elleracompany/craft-cookie-consent",
"description": "Craft Cookie Consent Plugin",
"version": "5.0.4",
"type": "craft-plugin",
"keywords": ["cookies", "consent", "gdpr"],
"license": "proprietary",
"authors": [
{
"name": "Ellera AS",
"homepage": "https://ellera.no"
}
],
"support": {
"email": "support@ellera.no"
},
"require": {
"ext-json": "*",
"craftcms/cms": "^5.1"
},
"autoload": {
"psr-4": {
"elleracompany\\cookieconsent\\": "src/"
}
},
"extra": {
"name": "Cookie Consent",
"handle": "cookie-consent",
"documentationUrl": "https://github.com/elleracompany/craft-cookie-consent/blob/master/README.md",
"changelogUrl": "https://github.com/elleracompany/craft-cookie-consent/blob/master/CHANGELOG.md",
"class": "elleracompany\\cookieconsent\\CookieConsent"
},
"prefer-stable": true,
"minimum-stability": "dev",
"require-dev": {
"craftcms/phpstan": "dev-main"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}