forked from craue/CraueFormFlowBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.45 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
50
51
52
53
54
55
56
57
{
"name": "craue/formflow-bundle",
"type": "symfony-bundle",
"description": "Multi-step forms for your Symfony project.",
"keywords": ["form", "wizard", "step", "symfony"],
"homepage": "https://github.com/craue/CraueFormFlowBundle",
"license": "MIT",
"authors": [
{
"name": "Christian Raue",
"email": "[email protected]"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/craue/CraueFormFlowBundle/contributors"
}
],
"require": {
"php": "^7.3|^8",
"symfony/config": "~3.4|~4.4|~5.2",
"symfony/dependency-injection": "~3.4|~4.4|~5.2",
"symfony/event-dispatcher": "~3.4|~4.4|~5.2",
"symfony/form": "~3.4|~4.4|~5.2",
"symfony/http-foundation": "~3.4|~4.4|~5.2",
"symfony/http-kernel": "~3.4|~4.4|~5.2",
"symfony/options-resolver": "~3.4|~4.4|~5.2",
"symfony/security-core": "~3.4|~4.4|~5.2",
"symfony/translation": "~3.4|~4.4|~5.2",
"symfony/validator": "~3.4|~4.4|~5.2",
"symfony/yaml": "~3.4|~4.4|~5.2"
},
"require-dev": {
"craue/translations-tests": "^1.1",
"doctrine/common": "~2.7|~3.0",
"doctrine/doctrine-bundle": "~1.10|~2.0",
"phpunit/phpunit": "^9.4",
"symfony/phpunit-bridge": "^5.2",
"symfony/symfony": "~3.4.23|~4.4|~5.2"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Craue\\FormFlowBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.5.x-dev"
}
},
"config": {
"sort-packages": true
}
}