-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
62 lines (62 loc) · 1.63 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
58
59
60
61
62
{
"name": "craue/formflow-demo-bundle",
"type": "symfony-bundle",
"description": "Example code showcasing the features of CraueFormFlowBundle.",
"keywords": ["form", "wizard", "step", "demo", "symfony"],
"homepage": "https://github.com/craue/CraueFormFlowDemoBundle",
"license": "MIT",
"authors": [
{
"name": "Christian Raue",
"email": "[email protected]"
}
],
"require": {
"craue/formflow-bundle": "~3.6@dev",
"doctrine/annotations": "^1.13",
"doctrine/orm": "^2.5.2",
"symfony/config": "~4.4|~5.3|^6",
"symfony/dependency-injection": "~4.4|~5.3|^6",
"symfony/event-dispatcher": "~4.4|~5.3|^6",
"symfony/form": "~4.4|~5.3|^6",
"symfony/framework-bundle": "~4.4|~5.3|^6",
"symfony/http-foundation": "~4.4|~5.3|^6",
"symfony/http-kernel": "~4.4|~5.3|^6",
"symfony/intl": "~4.4|~5.3|^6",
"symfony/options-resolver": "~4.4|~5.3|^6",
"symfony/routing": "~4.4|~5.3|^6",
"symfony/translation": "~4.4|~5.3|^6",
"symfony/validator": "~4.4|~5.3|^6"
},
"require-dev": {
"craue/translations-tests": "^1.1",
"phpunit/phpunit": "^9.5",
"symfony/asset": "~4.4|~5.3|^6",
"symfony/browser-kit": "~4.4|~5.3|^6",
"symfony/css-selector": "~4.4|~5.3|^6",
"symfony/mime": "~4.4|~5.3|^6",
"symfony/phpunit-bridge": "^6",
"symfony/security-bundle": "~4.4|~5.3|^6",
"symfony/twig-bundle": "~4.4|~5.3|^6"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Craue\\FormFlowDemoBundle\\": ""
},
"exclude-from-classmap": [
"/Tests/"
]
},
"extra": {
"symfony": {
"require": "~4.4|~5.3|^6"
}
},
"config": {
"allow-plugins": {
"symfony/flex": true
},
"sort-packages": true
}
}