-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
80 lines (78 loc) · 2.5 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "shapecode/cookie-consent-bundle",
"description": "Symfony Bundle for the Cookie Consent Plugin.",
"keywords": [
"cookie",
"consent",
"insites",
"policy",
"shapecode",
"symfony",
"bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/shapecode/cookie-consent-bundle",
"support": {
"email": "[email protected]",
"issues": "https://github.com/shapecode/cookie-consent-bundle/issues",
"source": "https://github.com/shapecode/cookie-consent-bundle/releases",
"wiki": "https://github.com/shapecode/cookie-consent-bundle/wiki"
},
"authors": [
{
"name": "Nikita Loges",
"email": "[email protected]"
}
],
"require": {
"php": "~7.4",
"symfony/framework-bundle": "~4.4|~5.0",
"symfony/dependency-injection": "~4.4|~5.0",
"symfony/http-kernel": "~4.4|~5.0",
"symfony/config": "~4.4|~5.0",
"symfony/translation": "~4.4|~5.0",
"symfony/twig-bundle": "~4.4|~5.0",
"twig/twig": "~2.0|~3.0"
},
"require-dev": {
"doctrine/coding-standard": "^8.1",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^3.5",
"phpstan/phpstan": "~0.12",
"phpstan/phpstan-deprecation-rules": "~0.12",
"phpstan/phpstan-phpunit": "~0.12",
"phpstan/phpstan-strict-rules": "~0.12",
"maglnet/composer-require-checker": "^2.0",
"icanhazstring/composer-unused": "~0.7",
"phpunit/phpunit": "^9.4"
},
"scripts": {
"check": [
"@crc",
"@unuse",
"@cs-check",
"@phpstan",
"@phpunit"
],
"phpstan": "phpstan analyse --ansi",
"phpstan-update-baseline": "phpstan analyse --ansi --generate-baseline phpstan-baseline.neon",
"crc": "vendor/bin/composer-require-checker --config-file=./composer-require-checker.json --ansi",
"phpunit": "phpunit --colors=always",
"cs-check": "phpcs -s",
"cs-fix": "phpcbf",
"unuse": "composer unused --excludeDir=vendor --excludeDir=var --excludeDir=node_modules --ansi"
},
"autoload": {
"psr-4": {
"Shapecode\\Bundle\\CookieConsentBundle\\": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}