forked from phpmentors-jp/workflower
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
36 lines (36 loc) · 837 Bytes
/
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
{
"name": "phpmentors/workflower",
"type": "library",
"description": "A BPMN 2.0 workflow engine for PHP",
"keywords": ["flow", "workflow", "process", "bpm", "bpmn", "bpms"],
"license": "BSD-2-Clause",
"authors": [
{
"name": "Atsuhiro Kubo",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1.3",
"ext-dom": "*",
"symfony/expression-language": "~3.4|~4.0|~5.0"
},
"require-dev": {
"phpunit/phpunit": "~6.5"
},
"autoload": {
"psr-4": {
"PHPMentors\\Workflower\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PHPMentors\\Workflower\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.0.x-dev"
}
}
}