-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathcomposer.json
43 lines (43 loc) · 1.01 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
{
"name": "netzmacht/workflow",
"type": "library",
"description": "Workflow library",
"keywords": [
"workflow",
"transition",
"states"
],
"license": "LGPL-3.0-or-later",
"authors": [
{
"name": "David Molineus",
"email": "[email protected]",
"homepage": "https://netzmacht.de",
"role": "Developer"
}
],
"require": {
"php": ">=7.1",
"beberlei/assert": "^2.0 || ^3.0"
},
"require-dev": {
"phpcq/all-tasks": "^1.2",
"phpspec/phpspec": "~5.0 || ~6.0"
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev",
"dev-develop": "2.2.x-dev"
}
},
"autoload": {
"psr-4": {
"Netzmacht\\Workflow\\": "src/"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/netzmacht/workflow/issues",
"source": "https://github.com/netzmacht/workflow"
}
}