forked from webfactory/exceptions-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (31 loc) · 990 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
36
37
38
39
40
{
"name": "webfactory/exceptions-bundle",
"type": "symfony-bundle",
"description": "A simple controller to display error pages during development plus some building blocks for more user-friendly error pages.",
"homepage": "http://inside.webfactory.de/de/blog/symfony2-exception-handling-and-custom-error-pages-explained.html",
"license": "MIT",
"authors": [
{
"name": "webfactory GmbH",
"email": "[email protected]",
"homepage": "http://www.webfactory.de",
"role": "Developer"
}
],
"autoload": {
"psr-4": { "Webfactory\\Bundle\\ExceptionsBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-default": "3.1.x-dev"
}
},
"require": {
"symfony/twig-bundle": "~2.2"
},
"require-dev": {
"symfony/framework-bundle": "~2.2",
"sensio/framework-extra-bundle": "~2.2",
"phpunit/phpunit": "~4.0"
}
}