This repository has been archived by the owner on May 30, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
57 lines (57 loc) · 1.6 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": "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.4",
"symfony/config": "^5.4 | ^6.1",
"symfony/dependency-injection": "^5.4 | ^6.1",
"symfony/http-kernel": "^5.4 | ^6.1",
"symfony/yaml": "^5.4 | ^6.1",
"twig/twig" : "^2.15 | ^3.4"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"symfony/error-handler": "^5.4 | ^6.0",
"symfony/phpunit-bridge": "^5.4 | ^6.0"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"autoload": {
"psr-4": {
"FH\\Bundle\\CookieGuardBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"FH\\Bundle\\CookieGuardBundle\\Tests\\": "Tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit --colors=always"
},
"support": {
"issues": "https://github.com/freshheads/FHCookieGuardBundle/issues"
}
}