-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 991 Bytes
/
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
{
"name": "apility/netflex-cookie-consent",
"description": "Cookie consent modal for EU for use with Netflex SDK",
"authors": [
{
"name": "Kristof Serré",
"email": "[email protected]",
"homepage": "https://www.statik.be"
},
{
"name": "Olav Øyen",
"email": "[email protected]",
"homepage": "https://www.apility.no"
}
],
"homepage": "https://github.com/apility/netflex-cookie-consent",
"keywords": ["Laravel", "cookie", "gdpr", "netflex"],
"license": "MIT",
"require": {
"php": "^7.0|^8.0",
"illuminate/http": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0"
},
"autoload": {
"psr-4": {
"Statikbe\\CookieConsent\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Statikbe\\CookieConsent\\CookieConsentServiceProvider"
]
}
}
}