-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (50 loc) · 1.57 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
45
46
47
48
49
50
{
"name": "ns/ace-bundle",
"type": "symfony-bundle",
"description": "This bundle provides the ace admin bootstrap template",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Nathanael David Noblet",
"email": "[email protected]"
},
{
"name": "Mark Woynarski",
"email": "[email protected]"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"symfony/doctrine-bridge": "^6.0|^7.0",
"symfony/framework-bundle": "^6.0|^7.0",
"symfony/form": "^6.0|^7.0",
"symfony/security-core": "^6.0|^7.0",
"symfony/routing": "^6.0|^7.0",
"twig/twig": "^2.0|^3.0",
"knplabs/knp-menu-bundle": "^3.0",
"doctrine/orm": "*"
},
"require-dev": {
"spiriitlabs/form-filter-bundle": "^11.0",
"phpunit/phpunit": "^9.0",
"liip/rmt": "^1.6"
},
"suggest": {
"punkave/symfony2-file-uploader-bundle": "Allows for drag & drop or multiple file upload",
"craue/formflow-bundle": "Provides multi-step forms for which we have a theme",
"lexik/form-filter-bundle": "Form filtering"
},
"autoload": {
"psr-4": { "NS\\AceBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "NS\\AceBundle\\Tests\\": "tests" }
},
"extra": {
"branch-alias": {
"dev-master": "8.0.x-dev"
}
}
}