-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1022 Bytes
/
composer.json
File metadata and controls
54 lines (54 loc) · 1022 Bytes
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
48
49
50
51
52
53
54
{
"name": "ddm-studio/cookie-byte",
"type": "statamic-addon",
"version": "2.0.1",
"description": "A highly customizable cookie consent manager for Statamic websites",
"keywords": [
"cookie consent",
"cookie consent banner",
"cookie consent manager",
"cookie banner",
"seo"
],
"license": "proprietary",
"authors": [
{
"name": "dryven",
"email": "hallo@dryven.com",
"homepage": "https://dryven.com/"
}
],
"support": {
"email": "support@dryven.com"
},
"require": {
"php": "^8.0",
"statamic/cms": "^6.0",
"laravel/helpers": "^1.7"
},
"autoload": {
"psr-4": {
"DDM\\CookieByte\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"DDM\\CookieByte\\ServiceProvider"
]
},
"statamic": {
"name": "Cookie Byte",
"description": "A highly customizable cookie consent manager for Statamic websites",
"version": "2.0.1"
},
"npm": {
"js-cookie": "^3.0.1"
}
},
"config": {
"allow-plugins": {
"pixelfear/composer-dist-plugin": true
}
}
}