-
Notifications
You must be signed in to change notification settings - Fork 9
/
composer.json
executable file
·47 lines (47 loc) · 1.46 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": "fractas/cookiepolicy",
"description": "Simple and configurable SilverStripe module to notify users about cookie policies",
"type": "silverstripe-vendormodule",
"homepage": "http://github.com/fractaslabs/silverstripe-cookie-policy-notification",
"keywords": ["silverstripe", "cookie", "cookie policy", "notification", "cookie policy notification"],
"license": "BSD-3-Clause",
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "http://github.com/fractaslabs/silverstripe-cookie-policy-notification/issues"
},
"authors": [{
"name": "Milan Jelicanin",
"email": "milan.jelicanin@fractas.com"
}, {
"name": "Petar Simic",
"email": "petar.simic@fractas.com"
}],
"require": {
"silverstripe/cms": "^4.0 || ^5.0",
"silverstripe/framework": "^4.0 || ^5.0",
"silverstripe/vendor-plugin": "^2.0"
},
"suggest": {
"fractas/googleanalytics": "SilverStripe module that adds a ability to add multiple Google Analytics property IDs"
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"expose": [
"client/dist"
]
},
"autoload": {
"psr-4": {
"Fractas\\CookiePolicy\\": "src/"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"silverstripe/vendor-plugin": true
}
}
}