-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 941 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 941 Bytes
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
{
"name": "eveltic/cookie-bundle",
"description": "A Symfony bundle for managing cookie consent under the AEPD 2024",
"keywords": ["symfony","bundle","symbony-bundle","cookie","consent","aepd"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Eveltic",
"email": "ipforner@gmail.com"
}
],
"require": {
"php": "^8.0",
"symfony/framework-bundle": "^6.0 | ^7.0",
"symfony/orm-pack": "^2.3",
"twig/twig": "^3.0",
"symfony/yaml": "^6.0 | ^7.0",
"symfony/asset": "^6.0 | ^7.0",
"symfony/console": "^6.0 | ^7.0",
"symfony/http-foundation": "^6.0 | ^7.0",
"symfony/http-kernel": "^6.0 | ^7.0",
"symfony/dependency-injection": "^6.0 | ^7.0"
},
"autoload": {
"psr-4": {
"Eveltic\\CookieBundle\\": "src/"
}
}
}