-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
37 lines (37 loc) · 1.08 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
{
"name": "infinite-networks/form-bundle",
"description": "A collection of useful form types and extensions for Symfony",
"license": "MIT",
"authors": [
{
"name": "Jonathan McLean"
}
],
"support": {
"issues": "https://github.com/infinite-networks/InfiniteFormBundle/issues"
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"doctrine/common": "^2.3 || ^3.0",
"symfony/framework-bundle": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/form": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"twig/twig": "^2.7 || ^3.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "^2.0",
"doctrine/annotations": "^2.0",
"doctrine/orm": "^2.3",
"phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
"symfony/mime": "^4.0 || ^5.0 || ^6.0 || ^7.0",
"symfony/phpunit-bridge": "^4.0 || ^5.0 || ^6.0 || ^7.0"
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
},
"autoload": {
"psr-4": { "Infinite\\FormBundle\\": "" }
}
}