-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
96 lines (96 loc) · 3 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
89
90
91
92
93
94
95
96
{
"name": "lag/adminbundle",
"type": "symfony-bundle",
"description": "Generic admin bundle for Symfony2 from L'arrière-guichet",
"keywords": [
"Admin",
"Backoffice",
"Symfony",
"Generic"
],
"homepage": "https://github.com/larriereguichet/AdminBundle",
"license": "MIT",
"authors": [
{
"name": "JohnKrovitch",
"email": "arnaudfrezet@gmail.com"
},
{
"name": "JohanDufour",
"email": "johan.dufour@gmail.com"
},
{
"name": "VincentChalnot",
"email": "vincent.chalnot@gmail.com"
}
],
"require": {
"php": "^8.3",
"doctrine/annotations": "^2.0",
"johnkrovitch/orm-pack": "^3.1",
"knplabs/knp-menu-bundle": "^3.2",
"league/flysystem-bundle": "^3.2",
"nadar/quill-delta-parser": "^3.4",
"symfony/dependency-injection": "^7.0",
"symfony/error-handler": "^7.0",
"symfony/event-dispatcher": "^7.0",
"symfony/expression-language": "^7.1",
"symfony/form": "^7.0",
"symfony/framework-bundle": "^7.0",
"symfony/security-bundle": "^7.0",
"symfony/serializer": "^7.0",
"symfony/translation": "^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/uid": "^7.1",
"symfony/ux-autocomplete": "^2.17",
"symfony/ux-live-component": "^2.17",
"symfony/ux-twig-component": "^2.13",
"symfony/validator": "^7.1",
"twig/extra-bundle": "^3.0",
"twig/intl-extra": "^3.3",
"twig/string-extra": "^3.4",
"twig/twig": "^3.15"
},
"require-dev": {
"dg/bypass-finals": "^1.1",
"friendsofphp/php-cs-fixer": "^3.13",
"liip/imagine-bundle": "^2.13",
"nyholm/symfony-bundle-test": "^3.0",
"php-parallel-lint/php-var-dump-check": "^0.5",
"phpstan/phpstan": "^1.8",
"phpunit/phpunit": "^11.3",
"rector/rector": "^1.2",
"symfony/browser-kit": "^7.0",
"symfony/css-selector": "^7.0",
"symfony/debug-bundle": "^7.1",
"symfony/dotenv": "^7.1",
"symfony/monolog-bundle": "^3.5",
"symfony/runtime": "^7.1",
"symfony/var-dumper": "^7.0",
"symfony/web-profiler-bundle": "^7.0",
"symfony/webpack-encore-bundle": "^2.0",
"symfony/workflow": "^7.1",
"symplify/config-transformer": "^12.3",
"zenstruck/foundry": "^2.2"
},
"autoload": {
"psr-4": {
"LAG\\AdminBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LAG\\AdminBundle\\Tests\\": "tests/phpunit/",
"LAG\\AdminBundle\\Tests\\Functional\\": "tests/functional/",
"LAG\\AdminBundle\\Tests\\Application\\": "tests/app/src/"
}
},
"config": {
"bin-dir": "bin",
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": true
}
}
}