-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
42 lines (42 loc) · 1.06 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
{
"name": "fduch/workflow-bundle",
"type": "library",
"license": "MIT",
"keywords": ["workflow"],
"homepage": "https://github.com/fduch/workflow-bundle",
"description": "workflow bundle for https://github.com/symfony/workflow component backported for Symfony 2.3+",
"authors": [
{
"name": "Grégoire Pineau",
"email": "[email protected]"
},
{
"name": "fduch",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.5.9",
"symfony/workflow": "^3.2",
"symfony/console": "^2.3|^3.0",
"symfony/framework-bundle": "^2.3|^3.0"
},
"require-dev": {
"twig/twig": "^1.11",
"symfony/yaml": "^2.0.5|^3.0"
},
"conflict": {
"symfony/framework-bundle": ">=3.2"
},
"autoload": {
"psr-4": {
"Symfony\\Bundle\\": "Bundle/",
"Symfony\\Bridge\\": "Bridge/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
}
}
}