-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
39 lines (34 loc) · 1.18 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
{
"name": "webfactory/navigation-bundle",
"autoload": {
"psr-4": {
"Webfactory\\Bundle\\NavigationBundle\\": "src"
}
},
"require": {
"php": "^7.2|8.0.*|8.1.*|8.2.*|8.3.*",
"ext-json": "*",
"psr/container": "^1.0",
"psr/log": "^1.1|^2.0|^3.0",
"symfony/config": "^4.0|^5.0|^6.0|^7.0",
"symfony/console": "^4.0|^5.0|^6.0|^7.0",
"symfony/dependency-injection": "^4.2|^5.0|^6.0|^7.0",
"symfony/event-dispatcher": "^4.3|^5.0|^6.0|^7.0",
"symfony/event-dispatcher-contracts": "^1.0|^2.0|^3.0",
"symfony/http-foundation": "^5.3|^6.0|^7.0",
"symfony/http-kernel": "^4.0|^5.0|^6.0|^7.0",
"symfony/proxy-manager-bridge": "^4.0|^5.0|^6.0|^7.0",
"symfony/service-contracts": "^1.0|^2.0|^3.0",
"twig/twig": "^1.36|^2.6|^3.0"
},
"require-dev": {
"symfony/stopwatch": "^5.4|^6.0|^7.0"
},
"suggest": {
"symfony/stopwatch": "um zu messen, wie lange der Aufbau des NavigationTree dauert",
"ocramius/proxy-manager": "damit der NavigationTree wirklich lazy erzeugt wird"
},
"config": {
"sort-packages": true
}
}