forked from sensiolabs/SensioGeneratorBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
36 lines (36 loc) · 905 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
{
"name": "sensio/generator-bundle",
"description": "This bundle generates code for you",
"keywords": [],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Fabien Potencier",
"email": "[email protected]"
}
],
"require": {
"symfony/framework-bundle": "~2.7|~3.0",
"symfony/console": "~2.7|~3.0",
"symfony/process": "~2.7|~3.0",
"symfony/yaml": "~2.7|~3.0"
},
"require-dev": {
"symfony/doctrine-bridge": "~2.7|~3.0",
"doctrine/orm": "~2.4",
"twig/twig": "~1.18"
},
"autoload": {
"psr-4": { "Sensio\\Bundle\\GeneratorBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"minimum-stability": "dev",
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}