forked from craue/CraueFormFlowBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.41 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
{
"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.0",
"symfony/config": "~3.4|~4.2|~5.0",
"symfony/dependency-injection": "~3.4|~4.2|~5.0",
"symfony/event-dispatcher": "~3.4|~4.2|~5.0",
"symfony/form": "~3.4|~4.2|~5.0",
"symfony/http-foundation": "~3.4|~4.2|~5.0",
"symfony/http-kernel": "~3.4|~4.2|~5.0",
"symfony/options-resolver": "~3.4|~4.2|~5.0",
"symfony/security-core": "~3.4|~4.2|~5.0",
"symfony/translation": "~3.4|~4.2|~5.0",
"symfony/validator": "~3.4|~4.2|~5.0",
"symfony/yaml": "~3.4|~4.2|~5.0"
},
"require-dev": {
"doctrine/common": "~2.7",
"doctrine/doctrine-bundle": "~1.10|~2.0",
"phpunit/phpunit": "^6.5.13|^7.5.1",
"symfony/phpunit-bridge": "~5.0",
"symfony/symfony": "~3.4|~4.2|~5.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Craue\\FormFlowBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.3.x-dev"
}
},
"config": {
"sort-packages": true
}
}