-
Notifications
You must be signed in to change notification settings - Fork 21
/
composer.json
35 lines (35 loc) · 873 Bytes
/
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
{
"name": "thormeier/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/"
]
},
"require": {
"php": ">=5.3.3",
"symfony/framework-bundle": "2.3.*|^2.6.0|^3.0|^4.0"
},
"require-dev": {
"twig/twig": "^1.15|^2.0",
"phpunit/phpunit": "4.*"
},
"suggest": {
"twig/twig": "To render breadcrumbs with a twig template"
},
"extra": {
"branch-alias": {
"dev-master": "2.2-dev"
}
}
}