forked from hostnet/form-twig-bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
33 lines (33 loc) · 1.04 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
{
"name": "hostnet/form-twig-bridge",
"description": "Allows usage of the Symfony 2 form framework, rendered in twig, without using all of Symfony 2!",
"type": "library",
"keywords": ["form", "twig"],
"homepage": "https://github.com/hostnet/form-twig-bridge",
"license": "MIT",
"authors": [
{
"name": "Nico Schoenmaker",
"homepage": "http://nschoenmaker.nl",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/hostnet/form-twig-bridge/issues",
"source": "https://github.com/hostnet/form-twig-bridge"
},
"require": {
"symfony/form" : "2.*, >=2.3",
"symfony/validator" : "2.*, >=2.3",
"symfony/config" : "2.*, >=2.3",
"symfony/translation" : "2.*, >=2.3",
"symfony/twig-bridge" : "2.*, >=2.3",
"symfony/http-foundation": "2.*, >=2.3"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload": {
"psr-0": {"Hostnet": "src/"}
}
}