-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.26 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
{
"name": "solidworx/form-handler-bundle",
"description": "Easy form handling for Symfony forms",
"type": "symfony-bundle",
"license": "MIT",
"keywords" : [
"symfony",
"symfony-bundle",
"symfony forms",
"form handling"
],
"authors": [
{
"name": "Pierre du Plessis",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"SolidWorx\\FormHandler\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"SolidWorx\\FormHandler\\Tests\\": "./tests"
}
},
"require": {
"php": ">=7.1.0",
"symfony/framework-bundle": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/form": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/event-dispatcher": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/http-foundation": "^4.4 || ^5.0 || ^6.0 || ^7.0",
"symfony/options-resolver": "^4.4 || ^5.0 || ^6.0 || ^7.0"
},
"require-dev": {
"doctrine/common": "^2.7",
"ocramius/proxy-manager": "^2.1",
"symfony/phpunit-bridge": "^5.0",
"phpstan/phpstan": "^0.12.8"
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}