-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.29 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/crud-bundle",
"license": "MIT",
"description": "A flexible Symfony bundle that provides automatic generation of Create, Read, Update, and Delete actions for entities, along with list management and customizable templates.",
"autoload": {
"psr-4": {
"Jeandanyel\\CrudBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jeandanyel\\CrudBundle\\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",
"jeandanyel/list-bundle": "^0.1"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "^6.4 || ^7.1"
}
},
"support": {
"issues": "https://github.com/jeandanyel/crud-bundle/issues"
},
"authors": [
{
"name": "Jean-Danyel Routhier",
"email": "[email protected]",
"role": "Developer"
}
]
}