-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
48 lines (48 loc) · 1.24 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": "atlasconsulting/cakephp-cookie-consent",
"description": "CookieConsent plugin for CakePHP",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=7.4",
"ext-json": "*",
"cakephp/cakephp": "^4.3",
"psr/http-message": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpstan/phpstan": "^1.5",
"phpunit/phpunit": "^9",
"cakephp/cakephp-codesniffer": "^4.2.0"
},
"autoload": {
"psr-4": {
"Atlas\\CookieConsent\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Atlas\\CookieConsent\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/"
}
},
"scripts": {
"check": [
"@test",
"@stan",
"@cs-check"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"stan": "phpstan analyse --memory-limit=-1",
"test": "phpunit --colors=always"
},
"prefer-stable": true,
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}