-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
88 lines (88 loc) · 3.26 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "symfony2admingenerator/generator-bundle",
"minimum-stability": "stable",
"description": "Admingenerator for Symfony based on YAML configuration and Twig templating",
"keywords": [
"admin",
"generator",
"yaml"
],
"type": "symfony-bundle",
"homepage": "https://github.com/symfony2admingenerator/GeneratorBundle",
"license": "MIT",
"authors": [
{
"name": "Cedric LOMBARDOT",
"email": "cedric.lombardot@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/symfony2admingenerator/GeneratorBundle/contributors"
}
],
"require": {
"php": "^8.1",
"doctrine/common": "~2.2||~3.0",
"doctrine/inflector": "~1.4||~2.0",
"symfony/cache": ">=5.4,<7.0",
"symfony/cache-contracts": "^1.0||^2.0||~3.0",
"symfony/config": ">=5.4,<7.0",
"symfony/console": ">=5.4,<7.0",
"symfony/dependency-injection": ">=5.4,<7.0",
"symfony/filesystem": ">=5.4,<7.0",
"symfony/finder": ">=5.4,<7.0",
"symfony/form": ">=5.4,<7.0",
"symfony/framework-bundle": ">=5.4,<7.0",
"symfony/http-foundation": ">=5.4,<7.0",
"symfony/http-kernel": ">=5.4,<7.0",
"symfony/options-resolver": ">=5.4,<7.0",
"symfony/process": ">=5.4,<7.0",
"symfony/routing": ">=5.4,<7.0",
"symfony/security-csrf": ">=5.4,<7.0",
"symfony/security-core": ">=5.4,<7.0",
"symfony/translation": ">=5.4,<7.0",
"symfony/twig-bundle": ">=5.4,<7.0",
"symfony/validator": ">=5.4,<7.0",
"symfony/yaml": ">=5.4,<7.0",
"symfony2admingenerator/twig-generator": "^2.0.1",
"twig/twig": "^2.15.3||^3.4.3",
"babdev/pagerfanta-bundle": "~2.0||~3.0||~4.0",
"pagerfanta/pagerfanta": "~3.0||~4.0",
"psr/log": "~1.0||~2.0||~3.0"
},
"require-dev": {
"doctrine/dbal": ">=3.5.3",
"doctrine/orm": ">=2.14.1",
"symfony/maker-bundle": "~1.0",
"phpunit/phpunit": "~9"
},
"suggest": {
"symfony2admingenerator/form-extensions-bundle": "Symfony form extensions",
"symfony2admingenerator/user-bundle": "FOSUserBundle integration for Admingenerator",
"phpoffice/phpspreadsheet": "Allows the usage of the Excel export.",
"jms/security-extra-bundle": "Take advantages of JMS Security Extra Bundle in your generated templates.",
"cnerta/breadcrumb-bundle": "(version ^2.0) Allows the usage of breadcrumbs.",
"knplabs/knp-menu-bundle": "(version >1.0,<2.2) Allows automatic rendering of the menu structure.",
"twig/intl-extra": "Adds support for localized dates to templates",
"twig/extra-bundle": "Allows autoconfiguration of Twig extras",
"symfony/maker-bundle": "To use the command for autogenerating configuration"
},
"conflict": {
"phpoffice/phpspreadsheet": "<1.23.0"
},
"autoload": {
"psr-4": {
"Admingenerator\\GeneratorBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}