-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
51 lines (51 loc) · 1.58 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
{
"name": "gtt/workflow-extensions-bundle",
"description": "Bundle for extended workflow management and automation",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Alex Medvedev (fduch)",
"email": "alex.medwedew@gmail.com"
}
],
"require": {
"php": "~7.2",
"psr/container": "^1.0",
"symfony/expression-language": "^4.0",
"symfony/framework-bundle": "^4.0",
"symfony/workflow": "^4.0"
},
"require-dev": {
"doctrine/doctrine-bundle": "~1.0",
"doctrine/doctrine-fixtures-bundle": "^2.2",
"doctrine/orm": "^2.4.8",
"jms/job-queue-bundle": "^2.0",
"nesbot/carbon": "^1.21",
"phpunit/phpunit": "~8.0",
"symfony/browser-kit": "^4.0",
"symfony/monolog-bundle": "^3.0",
"symfony/property-access": "^4.0",
"symfony/yaml": "^4.0"
},
"suggest": {
"jms/job-queue-bundle": "Needed for workflow transitions scheduling",
"symfony/console": "Needed for workflow transitions scheduling",
"nesbot/carbon": "Needed for workflow transitions scheduling",
"doctrine/doctrine-bundle": "Required for OrmPersistentMarkingStore usage"
},
"autoload": {
"psr-4": { "Gtt\\Bundle\\WorkflowExtensionsBundle\\": "src" }
},
"autoload-dev": {
"psr-4": { "Gtt\\Bundle\\WorkflowExtensionsBundle\\": "tests" }
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.x-dev"
}
}
}