forked from hostnet/form-handler-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.68 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
45
46
47
48
49
{
"name": "hostnet/form-handler-bundle",
"type": "symfony-bundle",
"description": "Hostnet form handler to provide an easier way of handling forms in actions",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": ">=7.3",
"hostnet/form-handler-component": "^1.4.0",
"symfony/expression-language": "^4.0|^5.0",
"symfony/http-foundation": "^4.0|^5.0"
},
"require-dev": {
"doctrine/annotations": "^1.0",
"hostnet/phpcs-tool": "^8.3",
"phpunit/phpunit": "^9.5.5",
"sensio/framework-extra-bundle": "3.*|^5.0",
"symfony/browser-kit": "^4.0|^5.0",
"symfony/finder": "^4.0|^5.0",
"symfony/form": "^4.0|^5.0",
"symfony/framework-bundle": "^4.0|^5.0",
"symfony/http-kernel": "^4.0|^5.0",
"symfony/phpunit-bridge": "^2.8|^3.0|^4.0|^5.0",
"symfony/translation": "^4.0|^5.0",
"symfony/validator": "^4.0|^5.0",
"symfony/yaml": "^4.0|^5.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"
]
},
"archive": {
"exclude": [
"/test"
]
}
}