forked from thormeier/breadcrumb-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 928 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 928 Bytes
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
{
"name": "enoptea/breadcrumb-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for easy setup of breadcrumbs",
"license": "MIT",
"authors": [
{
"name": "Pascal Thormeier",
"email": "pascal.thormeier@gmail.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "Thormeier\\BreadcrumbBundle\\": "" },
"exclude-from-classmap": [
"/Tests/Unit/"
]
},
"require": {
"php": ">=7.0",
"symfony/framework-bundle": "2.3.*|^2.6.0|^3.0|^4.0|^5.0|^6.0"
},
"require-dev": {
"twig/twig": "^1.15|^2.0",
"symfony/twig-bundle": "^4.0|^5.0",
"phpunit/phpunit": "4.*"
},
"suggest": {
"twig/twig": "To render breadcrumbs with a twig template"
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
}
}