-
Notifications
You must be signed in to change notification settings - Fork 263
/
composer.json
44 lines (44 loc) · 1.25 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
{
"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"
}
],
"require": {
"php": ">=5.3.2",
"symfony/framework-bundle": "^3.0 | ^4.0",
"symfony/form": "^3.0 | ^4.0",
"twig/twig": "~2.6"
},
"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"
}
}
}