forked from freshheads/FHCookieGuardBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.74 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": "freshheads/cookie-guard-bundle",
"description": "The FHCookieGuardBundle can be used to activate (external) scripts after cookies are accepted by the client",
"type": "symfony-bundle",
"keywords": [
"cookie",
"consent"
],
"license": "MIT",
"authors": [
{
"name": "Joris van de Sande",
"email": "[email protected]",
"homepage": "https://freshheads.com",
"role": "Developer"
},
{
"name": "Jeffrey Moelands",
"email": "[email protected]",
"homepage": "https://freshheads.com",
"role": "Developer"
}
],
"require": {
"php": "^7.2.5",
"symfony/config": "^3.4|^4.0|^5.0",
"symfony/dependency-injection": "^3.4|^4.0|^5.0",
"symfony/http-kernel": "^3.4|^4.0|^5.0",
"symfony/yaml": "^3.4|^4.0|^5.0",
"twig/twig" : "^2.7|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"symfony/debug": "^4.4",
"symfony/phpunit-bridge": "^5.0"
},
"config": {
"platform": {
"php": "7.2.5"
},
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"FH\\Bundle\\CookieGuardBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"FH\\Bundle\\CookieGuardBundle\\Tests\\": "Tests"
}
},
"extra": {
"branch-alias": {
"dev-develop": "1.x-dev"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
},
"support": {
"issues": "https://github.com/freshheads/FHCookieGuardBundle/issues"
}
}