forked from Huppys/cookie-consent-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.45 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.45 KB
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
{
"name": "lemric/cookie-consent-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle to ask the visitors for their consent to use cookies to comply to AVG/GDPR.",
"license": "MIT",
"require": {
"php": "^8.1",
"doctrine/annotations": "^1.6|^2.0",
"doctrine/doctrine-bundle": "^1.10 || ^2.11.1",
"doctrine/orm": "^2.12.0|^3.2.1",
"symfony/asset": "^v6.3.0 || ^7.0",
"symfony/config": "^v6.3.0 || ^7.0",
"symfony/dependency-injection": "^v6.3.0 || ^7.0",
"symfony/doctrine-bridge": "^6.3.0 || ^7.0",
"symfony/expression-language": "^6.3 || ^7.0",
"symfony/form": "^6.3 || ^7.0",
"symfony/http-kernel": "^6.3.0 || ^7.0",
"symfony/security-csrf": "^6.3.0 || ^7.0",
"symfony/translation": "^6.3.0 || ^7.0",
"symfony/twig-bridge": "^6.3.0 || ^7.0",
"symfony/twig-bundle": "^6.3.0 || ^7.0",
"twig/twig": "^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^v3.38.2",
"phpunit/phpunit": "^10.4.2 || ^11.1.2",
"symfony/runtime": "^7.1",
"symfony/test-pack": "^1.0",
"symfony/yaml": "^6.0 || ^7.0"
},
"prefer-stable": true,
"autoload": {
"exclude-from-classmap": ["/tests/", "/node_modules/"],
"psr-4": {
"huppys\\CookieConsentBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"huppys\\CookieConsentBundle\\tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"symfony/runtime": true
}
}
}