-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
34 lines (34 loc) · 967 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
{
"name": "nymo/silex-twig-breadcrumb-extension",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Gregor Panek",
"homepage": "http://www.gregorpanek.de",
"email": "gp@gregorpanek.de",
"role": "Developer"
}
],
"description": "Twig breadcrumb extension for use in silex",
"keywords": ["silex", "twig", "breadcrumbs", "extension"],
"homepage": "http://github.com/nymo/silex-twig-breadcrumb-extension",
"require": {
"php": ">=7.1",
"silex/silex": "^2.0",
"twig/twig": "^2.0",
"symfony/twig-bridge": "^4.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0",
"symfony/translation": "^3.0",
"php-coveralls/php-coveralls": "~2.0",
"squizlabs/php_codesniffer": "~3.0",
"phpmd/phpmd": "~2.0"
},
"autoload": {
"psr-4": {
"nymo\\": "src/nymo/"
}
}
}