-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.27 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": "jeandanyel/list-bundle",
"license": "MIT",
"description": "A flexible Symfony bundle for generating and customizing lists, capable of listing both Doctrine entities and data from external sources.",
"autoload": {
"psr-4": {
"Jeandanyel\\ListBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jeandanyel\\ListBundle\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.12",
"doctrine/orm": "^3.1",
"symfony/translation": "^6.4 || ^7.1",
"symfony/asset": "^6.4 || ^7.1",
"symfony/form": "^6.4 || ^7.1",
"symfony/framework-bundle": "^6.4 || ^7.1",
"symfony/twig-bundle": "^6.4 || ^7.1",
"twig/twig": "^2.12|^3.0",
"symfony/options-resolver": "^6.4 || ^7.1"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^6.4 || ^7.1"
}
},
"support": {
"issues": "https://github.com/jeandanyel/list-bundle/issues"
},
"authors": [
{
"name": "Jean-Danyel Routhier",
"email": "[email protected]",
"role": "Developer"
}
]
}