-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 1 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
{
"name": "sidus/admin-bundle",
"description": "Simple and extendable action-based admin management with built-in routing generation",
"keywords": [
"admin",
"action"
],
"homepage": "https://github.com/VincentChalnot/SidusAdminBundle",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vincent Chalnot",
"homepage": "https://github.com/VincentChalnot",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Sidus\\AdminBundle\\": ""
}
},
"require": {
"php": ">=8.1",
"symfony/event-dispatcher": ">=6.3",
"symfony/form": ">=6.3",
"symfony/http-foundation": ">=6.3",
"symfony/http-kernel": ">=6.3",
"symfony/routing": ">=6.3",
"symfony/security-core": ">=6.3",
"symfony/translation-contracts": ">=3.0",
"symfony/yaml": ">=6.3",
"twig/twig": ">=3.0",
"sidus/datagrid-bundle": "~4.0"
}
}