-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.43 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.43 KB
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
{
"name": "becklyn/route-tree-bundle",
"description": "This bundle provides a simple implementation of a tree built from routing configuration.",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"authors": [
{
"name": "Becklyn Studios",
"homepage": "https://becklyn.com/"
}
],
"homepage": "https://github.com/Becklyn/BecklynRouteTreeBundle",
"require": {
"php": ">=7.4",
"becklyn/menu": "^3.1.0",
"symfony/cache": "^v5.4.3 || ^v6.0.3",
"symfony/http-foundation": "^v5.4.3 || ^v6.0.3",
"symfony/http-kernel": "^v5.4.4 || ^v6.0.4",
"symfony/routing": "^v5.4.3 || ^v6.0.3",
"twig/twig": "^v3.3.8"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"sensio/framework-extra-bundle": "^v5.4.3 || ^v6.0.3",
"symfony/phpunit-bridge": "^v5.4.3 || ^v6.0.3"
},
"suggest": {
"sensio/framework-extra-bundle": "To automatically infer from @Security and @IsGranted annotations."
},
"autoload": {
"psr-4": {
"Becklyn\\RouteTreeBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Becklyn\\RouteTreeBundle\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "4.x-dev",
"dev-next": "4.x-dev"
}
}
}