forked from sensiolabs/SensioFrameworkExtraBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.52 KB
/
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
41
42
43
44
45
46
47
48
49
50
{
"name": "sensio/framework-extra-bundle",
"description": "This bundle provides a way to configure your controllers with annotations",
"keywords": ["annotations","controllers"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
}
],
"require": {
"symfony/config": "^3.2",
"symfony/framework-bundle": "^3.1",
"symfony/dependency-injection": "~3.0",
"symfony/http-kernel": "^3.1",
"doctrine/common": "~2.2"
},
"require-dev": {
"symfony/expression-language": "~3.0",
"symfony/finder": "~3.0",
"symfony/psr-http-message-bridge": "^0.3",
"symfony/security-bundle": "~3.0",
"symfony/yaml": "~3.0",
"symfony/twig-bundle": "~3.0",
"twig/twig": "~1.11|~2.0",
"symfony/browser-kit": "~3.0",
"symfony/phpunit-bridge": "~3.2",
"symfony/dom-crawler": "~3.0",
"zendframework/zend-diactoros": "^1.3"
},
"suggest": {
"symfony/psr-http-message-bridge": "To use the PSR-7 converters",
"symfony/expression-language": "",
"symfony/security-bundle": ""
},
"autoload": {
"psr-4": { "Sensio\\Bundle\\FrameworkExtraBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "Tests\\Fixtures\\": "Tests/Fixtures/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"minimum-stability": "dev"
}