-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 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
{
"name": "gridonic/statamic-consent-manager",
"description": "A Statamic 3 addon to manage consent for cookies.",
"authors": [
{
"name": "Gridonic",
"email": "[email protected]",
"homepage": "https://gridonic.ch"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/gridonic/statamic-consent-manager/issues"
},
"require": {
"statamic/cms": "~3.2.0 || ~3.3.0 || ~3.4.0 || ^4.0.0 || ^5.0.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"illuminate/support": "^8.55"
},
"autoload": {
"psr-4": {
"Gridonic\\StatamicConsentManager\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Gridonic\\StatamicConsentManager\\Tests\\": "tests"
}
},
"extra": {
"statamic": {
"name": "Statamic Consent Manager",
"description": "A Statamic 3 addon to manage consent for cookies."
},
"laravel": {
"providers": [
"Gridonic\\StatamicConsentManager\\ServiceProvider"
]
}
}
}