-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.18 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
{
"name": "wame/generator-bundle2",
"description": "Generator for your symfony entities and crud",
"keywords": ["wame", "generator", "generator2", "symfony", "symfony3"],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Kevin Driessen",
"email": "kevin@wame.nl"
},
{
"name": "Ruud Bijnen",
"email": "ruud@wame.nl"
}
],
"require": {
"php": ">=7.1",
"symfony/framework-bundle": "~3.0",
"symfony/console": "~3.0",
"symfony/process": "~3.0",
"symfony/yaml": "~3.0",
"twig/twig": "^1.28.2|^2.0"
},
"require-dev": {
"symfony/doctrine-bridge": "~3.0",
"symfony/filesystem": "~3.0",
"symfony/phpunit-bridge": "^3.3",
"doctrine/orm": "~2.4",
"doctrine/doctrine-bundle": "^1.6",
"stof/doctrine-extensions-bundle": "^1.2",
"fresh/doctrine-enum-bundle": "^5.0"
},
"suggest": {
"sg/datatablesbundle": "^1.0"
},
"autoload": {
"psr-4": { "Wame\\GeneratorBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
}
}