-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.76 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "ideacatlab/laravel-cookie-consent-enhanced",
"description": "Make your Laravel app comply with the EU cookie law and implement a cookie control system that allows users to manage their own cookie preferences",
"keywords": [
"ideacatlab",
"ideacat",
"cookie-consent-enhanced",
"enhanced",
"cookie-consent",
"cookie",
"comply",
"law",
"eu"
],
"homepage": "https://github.com/ideacatlab/laravel-cookie-consent-enhanced",
"license": "MIT",
"authors": [
{
"name": "Gheorghe Razvan",
"email": "razvan@ideacat.ro",
"homepage": "https://ideacat.ro",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^10.23.1",
"illuminate/view": "^10.23.1",
"illuminate/cookie": "^10.23.1",
"spatie/laravel-package-tools": "^1.16.1"
},
"require-dev": {
"fakerphp/faker": "^1.23.0",
"orchestra/testbench": "^8.10.2",
"pestphp/pest": "^2.18.2",
"friendsofphp/php-cs-fixer": "^3.41"
},
"autoload": {
"psr-4": {
"Ideacatlab\\LaravelCookieConsentEnhanced\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Ideacatlab\\LaravelCookieConsentEnhanced\\Test\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest"
},
"extra": {
"laravel": {
"providers": [
"Ideacatlab\\LaravelCookieConsentEnhanced\\CookieConsentServiceProvider"
]
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}