-
Notifications
You must be signed in to change notification settings - Fork 11
/
composer.json
34 lines (34 loc) · 1.06 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
{
"name": "hostnet/form-handler-component",
"description": "Hostnet form handler to provide an easier way of handling forms",
"license": "MIT",
"minimum-stability": "stable",
"require": {
"php": "^7.3||^8.0",
"symfony/form": "^4.0||^5.0||^6.0||^7.0",
"symfony/http-foundation": "^4.0||^5.0||^6.0||^7.0"
},
"require-dev": {
"hostnet/phpcs-tool": "^9.1.0",
"phpspec/prophecy-phpunit": "^2.0.1",
"phpunit/phpunit": "^9.5.5",
"symfony/debug": "^4.0",
"symfony/phpunit-bridge": "^4.0||^5.0||^6.0||^7.0"
},
"autoload": {
"psr-4": {
"Hostnet\\Component\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Hostnet\\Component\\": "test/"
}
},
"config": {
"allow-plugins": {
"hostnet/*": true,
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}