forked from craue/CraueFormFlowBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.02 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.02 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
{
"name": "craue/formflow-bundle",
"type": "symfony-bundle",
"description": "Multi-step forms for your Symfony project.",
"keywords": ["form", "wizard", "step", "symfony2", "symfony3"],
"homepage": "https://github.com/craue/CraueFormFlowBundle",
"license": "MIT",
"authors": [
{
"name": "Christian Raue",
"email": "christian.raue@gmail.com"
},
{
"name": "Symfony Community",
"homepage": "https://github.com/craue/CraueFormFlowBundle/contributors"
}
],
"require": {
"php": "^5.3.9|~7.0",
"symfony/form": "~2.7|~3.0",
"symfony/http-kernel": "~2.7|~3.0",
"symfony/translation": "~2.7|~3.0",
"symfony/yaml": "~2.7|~3.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.0",
"phpunit/phpunit": "~4.1|~5.0",
"sensio/framework-extra-bundle": "~3.0",
"symfony/phpunit-bridge": "^2.8.1|^3.0.1",
"symfony/symfony": "~2.7|~3.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Craue\\FormFlowBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "3.0.x-dev"
}
}
}