-
Notifications
You must be signed in to change notification settings - Fork 39
/
composer.json
39 lines (39 loc) · 1.14 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
{
"name": "formapro/pvm",
"license": "MIT",
"type": "lib",
"description": "The library provides us with a frame to build a workflow or a business process such as BPMN. Could execute tasks in parallel or delayed tasks",
"keywords": [
"process",
"business process",
"workflow",
"petri net",
"bpmn"
],
"autoload": {
"psr-4": { "Formapro\\Pvm\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tests\\": "tests/" }
},
"require": {
"php": "^7.1",
"formapro/values": "^0.5",
"ramsey/uuid": "^3",
"psr/log": "^1"
},
"require-dev": {
"enqueue/simple-client": "^0.9"
},
"suggest": {
"enqueue/enqueue": "^0.9 Install the Enqueue library to be able to process tasks async (by using MQ).",
"graphp/graphviz": "^0.2 If you want to visualize graphs",
"alom/graphviz": "^1.1 If you want to visualize graphs",
"formapro/yadm": "^0.5 Install the Yadm library to be able to persist store in MongoDB"
},
"extra": {
"branch-alias": {
"dev-master": "0.4.x-dev"
}
}
}