forked from egeloen/IvoryFormExtraBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
37 lines (37 loc) · 1.01 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
{
"name": "egeloen/form-extra-bundle",
"type": "symfony-bundle",
"description": "Provides a JavaScript/StyleSheet fragment for the Symfony Form component.",
"keywords": [ "form", "javascript", "stylesheet" ],
"license": "MIT",
"authors": [
{
"name": "Eric GELOEN",
"email": "[email protected]"
}
],
"require": {
"php": "^7.0",
"symfony/form": "^3.2|^4.0",
"symfony/framework-bundle": "^3.2|^4.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.0",
"phpunit/phpunit": "^5.0",
"symfony/phpunit-bridge": "^3.0|^4.0",
"symfony/templating": "^3.0|^4.0",
"symfony/twig-bridge": "^3.0|^4.0",
"twig/twig": "^2.0"
},
"suggest": {
"symfony/twig-bridge": "Allows to use Twig templates"
},
"autoload": {
"psr-4": { "Ivory\\FormExtraBundle\\": "" }
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
}
}