-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.54 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.54 KB
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
{
"name": "idci/extra-form-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle that expand existing FormType feature to allow a dynamic form generation",
"keywords": ["form","form type","dynamic","configuration"],
"license": "MIT",
"authors": [
{
"name": "Gabriel Bondaz",
"email": "gabriel.bondaz@idci-consulting.fr",
"homepage": "http://www.idci-consulting.fr"
}
],
"require": {
"php": "^7.2|^8.0",
"google/recaptcha": "^1.1",
"gregwar/captcha-bundle": "~2.0",
"jms/serializer-bundle": ">=1.1",
"symfony/dependency-injection": "^4.4|^5.3|^6.0",
"symfony/event-dispatcher": "^4.4|^5.3|^6.0",
"symfony/form": "^4.4|^5.3|^6.0",
"symfony/http-foundation": "^4.4|^5.3|^6.0",
"symfony/http-kernel": "^4.4|^5.3|^6.0",
"symfony/options-resolver": "^4.4|^5.3|^6.0",
"symfony/security-bundle": "^4.4|^5.3|^6.0",
"symfony/translation": "^4.4|^5.3|^6.0",
"symfony/validator": "^4.4|^5.3|^6.0",
"friendsofsymfony/rest-bundle": ">=2.5"
},
"require-dev": {
"phpunit/phpunit": "~5.7",
"symfony/framework-bundle": "^4.4|^5.3|^6.0",
"symfony/security-bundle": "^4.4|^5.3|^6.0",
"symfony/twig-bundle": "^4.4|^5.3|^6.0"
},
"suggest": {
"idci/step-bundle": "Allow to use the extra form mechanism in a step workflow"
},
"autoload": {
"psr-4": {
"IDCI\\Bundle\\ExtraFormBundle\\": ""
}
}
}