forked from lexik/LexikWorkflowBundle
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
55 lines (55 loc) · 1.12 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
{
"name": "lexik/workflow-bundle",
"type": "symfony-bundle",
"description": "Simple workflow bundle for Symfony2",
"keywords": [
"Symfony2",
"bundle",
"workflow"
],
"license": "MIT",
"homepage": "https://github.com/lexik/LexikWorkflowBundle",
"authors": [
{
"name": "Cedric Girard",
"email": "c.girard@lexik.fr"
},
{
"name": "Jeremy Barthe",
"email": "j.barthe@lexik.fr"
},
{
"name": "Gilles Gauthier",
"email": "g.gauthier@lexik.fr"
},
{
"name": "Dev Lexik",
"email": "dev@lexik.fr"
},
{
"name": "Jérémy Romey",
"email": "jeremy@free-agent.fr"
}
],
"require": {
"php": "^7.4|^8.0",
"ext-json": "*",
"symfony/framework-bundle": "^4.4",
"doctrine/orm": ">=2.8 <2.9",
"symfony/security": "^4.4",
"symfony/twig-bundle": "^4.4",
"symfony/yaml": "^4.4",
"symfony/config": "^4.4",
"symfony/event-dispatcher": "^4.4"
},
"autoload": {
"psr-4": {
"Lexik\\Bundle\\WorkflowBundle\\": ""
}
},
"extra": {
"branch-alias": {
"dev-master": "0.7.x-dev"
}
}
}