forked from hostnet/form-handler-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
59 lines (59 loc) · 1.91 KB
/
composer.json
File metadata and controls
59 lines (59 loc) · 1.91 KB
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
49
50
51
52
53
54
55
56
57
58
59
{
"name": "hostnet/form-handler-bundle",
"type": "symfony-bundle",
"description": "Hostnet form handler to provide an easier way of handling forms in actions",
"license": "MIT",
"authors": [
{
"name": "Iltar van der Berg",
"email": "ivanderberg@hostnet.nl"
},
{
"name": "Yannick de Lange",
"email": "ydelange@hostnet.nl"
}
],
"require": {
"php": "^5.6|^7.0",
"hostnet/form-handler-component": "^1.4.0",
"symfony/expression-language": "^2.7|^3.0|^4.0",
"symfony/http-foundation": "^2.7|^3.0|^4.0"
},
"require-dev": {
"doctrine/annotations": "^1.0",
"hostnet/phpcs-tool": "^4.1.0",
"phpunit/phpunit": "^4.7|^5.0",
"sensio/framework-extra-bundle": "3.*",
"symfony/browser-kit": "^2.7|^3.0|^4.0",
"symfony/finder": "^2.7|^3.0|^4.0",
"symfony/form": "^2.7|^3.0|^4.0",
"symfony/framework-bundle": "^2.7|^3.0|^4.0",
"symfony/http-kernel": "^2.7|^3.0|^4.0",
"symfony/phpunit-bridge": "^2.8|^3.0|^4.0",
"symfony/translation": "^2.7|^3.0|^4.0",
"symfony/validator": "^2.7|^3.0|^4.0"
},
"suggest": {
"sensio/framework-extra-bundle": "To utilize form param converter."
},
"autoload": {
"psr-4": {
"Hostnet\\Bundle\\FormHandlerBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Bundle\\FormHandlerBundle\\": "test/"
},
"files": [
"test/Functional/Fixtures/TestKernel.php"
]
},
"minimum-stability" : "dev",
"prefer-stable" : true,
"archive": {
"exclude": [
"/test"
]
}
}