forked from hostnet/form-handler-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1017 Bytes
/
composer.json
File metadata and controls
37 lines (37 loc) · 1017 Bytes
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": "hostnet/form-handler-component",
"description": "Hostnet form handler to provide an easier way of handling forms",
"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",
"symfony/form": "^2.7||^3.0",
"symfony/http-foundation": "^2.7||^3.0"
},
"require-dev": {
"hostnet/phpcs-tool": "^4.1",
"phpunit/phpunit": "^5.4",
"symfony/debug": "^2.7||^3.0",
"symfony/phpunit-bridge": "^2.7||^3.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Hostnet\\Component\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Component\\": "test/"
}
}
}