-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
39 lines (39 loc) · 921 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
37
38
39
{
"name": "bravo3/workflow",
"type": "library",
"description": "Workflow decision engine",
"keywords": ["workflow", "decider", "swf"],
"license": "MIT",
"authors": [
{
"name": "Jordon Scott",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": { "": ["src/", "tests/"] }
},
"require": {
"php": ">=5.5.0",
"eloquent/enumeration": "~5.1",
"psr/log": "~1.0",
"predis/predis": "~1.0",
"symfony/event-dispatcher": ">=2.5",
"symfony/yaml": ">=2.5",
"aws/aws-sdk-php": "~2.7"
},
"require-dev": {
"phpunit/phpunit": ">=4.1.0",
"bravo3/properties": "~1.0"
},
"scripts": {
"post-install-cmd": [
],
"post-update-cmd": [
]
},
"config": {
"bin-dir": "bin",
"preferred-install": "dist"
}
}