forked from guilemos/GenemuFormBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.36 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
{
"name": "genemu/form-bundle",
"type": "symfony-bundle",
"description": "Extra form types for your Symfony2 projects",
"keywords": ["form", "extra form"],
"license": "MIT",
"authors": [
{
"name": "Olivier Chauvel",
"email": "[email protected]"
},
{
"name": "Bilal Amarni",
"email": "[email protected]"
},
{
"name": "Community contributions",
"homepage": "https://github.com/genemu/GenemuFormBundle/contributors"
},
{
"name": "Sylvester Saracevas",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "~2.8 || ^3.0",
"symfony/form": "~2.8 || ^3.0",
"twig/twig": "~1.14"
},
"suggest": {
"symfony/twig-bridge": "For integration into Twig templates",
"doctrine/doctrine-bundle": "In order to use some form types with Doctrine",
"symfony/finder": "For an image type",
"doctrine/mongodb-odm-bundle": "For MongoDB integration"
},
"autoload": {
"psr-0": {
"Genemu\\Bundle\\FormBundle": ""
}
},
"target-dir": "Genemu/Bundle/FormBundle",
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
}
}