-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.31 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
48
{
"name": "bkc-media/twill-cookie-consent",
"description": "A cookie twill package",
"homepage": "https://github.com/bkc-media/twill-cookie-consent",
"license": "MIT",
"authors": [
{
"name": "Jeffrey Sevinga",
"homepage": "https://bkcmedia.nl",
"email": "j.sevinga@bkcmedia.nl",
"role": "Software Developer"
}
],
"require": {
"php": "^8.0",
"area17/twill": "^3.0",
"laravel/framework": "^8|^9"
},
"autoload": {
"psr-4": {
"BKCmedia\\TwillCookieConsent\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"BKCmedia\\TwillCookieConsent\\TwillCookieConsentServiceProvider"
],
"public": "vendor/twill-cookie-consent",
"assets": [
{
"source": "build",
"destination": "public/vendor/twill-cookie-consent"
}
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"php artisan vendor:publish --provider=\"BKCmedia\\TwillCookieConsent\\TwillCookieConsentServiceProvider\" --tag=\"twill-cookie-consent-assets\" --force"
],
"post-update-cmd": [
"php artisan vendor:publish --provider=\"BKCmedia\\TwillCookieConsent\\TwillCookieConsentServiceProvider\" --tag=\"twill-cookie-consent-assets\" --force"
]
}
}