forked from matthijsch/cookie-consent-bundle-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.51 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
{
"name": "connectholland/cookie-consent-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for implementing Cookie Consent to comply to AVG/GDPR.",
"license": "MIT",
"require": {
"php": "^7.2",
"doctrine/annotations": "^1.6",
"doctrine/doctrine-bundle": "^1.10 || ^2.0",
"doctrine/orm": "^2.5",
"symfony/asset": "^3.4 || ^4.2 || ^5.0",
"symfony/dependency-injection": "^3.4 || ^4.2 || ^5.0",
"symfony/doctrine-bridge": "^3.4 || ^4.2 || ^5.0",
"symfony/expression-language": "^3.4 || ^4.2 || ^5.0",
"symfony/form": "^3.4 || ^4.2 || ^5.0",
"symfony/framework-bundle": "^3.4 || ^4.2 || ^5.0",
"symfony/http-foundation": "^3.4 || ^4.2 || ^5.0",
"symfony/templating": "^3.4 || ^4.2 || ^5.0",
"symfony/translation": "^3.4 || ^4.2 || ^5.0",
"symfony/twig-bridge": "^3.4 || ^4.2 || ^5.0",
"symfony/twig-bundle": "^3.4 || ^4.2 || ^5.0",
"twig/twig": "^2.6 || ^3.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.14",
"phpunit/phpunit": "^7.5",
"symfony/yaml": "^3.4 || ^4.2 || ^5.0"
},
"prefer-stable": true,
"autoload": {
"exclude-from-classmap": ["/Tests/"],
"psr-4": {
"ConnectHolland\\CookieConsentBundle\\": ""
}
},
"autoload-dev": {
"psr-4": {
"ConnectHolland\\CookieConsentBundle\\Tests\\": "/Tests"
}
},
"config": {
"sort-packages": true
}
}