forked from duncanmcclean/cookie-notice
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.51 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
{
"name": "duncanmcclean/cookie-notice",
"description": "Cookie Consent for Statamic - with support for consent groups!",
"license": "proprietary",
"autoload": {
"psr-4": {
"DuncanMcClean\\CookieNotice\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DuncanMcClean\\CookieNotice\\Tests\\": "tests"
}
},
"extra": {
"download-dist": {
"url": "https://github.com/duncanmcclean/cookie-notice/releases/download/{$version}/dist.tar.gz",
"path": "dist"
},
"statamic": {
"name": "Cookie Notice",
"description": "Cookie Consent for Statamic - with support for consent groups!"
},
"laravel": {
"providers": [
"DuncanMcClean\\CookieNotice\\ServiceProvider"
]
}
},
"require": {
"php": "^8.2",
"pixelfear/composer-dist-plugin": "^0.1.5",
"statamic/cms": "^4.0",
"pestphp/pest": "^1.22"
},
"require-dev": {
"orchestra/testbench": "^7.0"
},
"scripts": {
"lint": [
"php-cs-fixer fix ./src"
],
"test": [
"./vendor/bin/pest"
]
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pixelfear/composer-dist-plugin": true,
"pestphp/pest-plugin": true
}
},
"minimum-stability": "alpha"
}