-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 857 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
{
"name": "jenko/command-bus-command-bus",
"description": "A command bus for yo command bus",
"license": "MIT",
"authors": [
{
"name": "Ian Jenkins",
"email": "[email protected]",
"homepage": "http://jenko.me"
}
],
"minimum-stability": "dev",
"require": {
"simple-bus/command-bus": "~1.0",
"league/tactician": "dev-master",
"cairns/sergeant": "dev-master",
"broadway/broadway": "dev-master",
"enginebit/commander": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "~4.3"
},
"autoload": {
"psr-4" : { "Jenko\\CommandBusCommandBus\\" : "src" }
},
"autoload-dev": {
"psr-4" : { "Jenko\\CommandBusCommandBus\\Tests\\" : "tests" }
},
"config": {
"bin-dir": "bin"
}
}