-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.15 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": "craue/formflow-bundle",
"type": "symfony-bundle",
"description": "Multi-step forms for your Symfony project.",
"keywords": ["form", "wizard", "step", "symfony2", "symfony3", "symfony4"],
"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": "^5.3.9|~7.0",
"symfony/form": "~2.7|~3.0|~4.0",
"symfony/http-kernel": "~2.7|~3.0|~4.0",
"symfony/translation": "~2.7|~3.0|~4.0",
"symfony/yaml": "~2.7|~3.0|~4.0",
"paragonie/random_compat": "^1|^2"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.0",
"phpunit/phpunit": "^4.8.35|~5.7|~6.0",
"sensio/framework-extra-bundle": "~3.0",
"symfony/phpunit-bridge": "^3.2.5|~4.0",
"symfony/symfony": "~2.7|~3.0|~4.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Craue\\FormFlowBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}