Skip to content

Commit b468bd6

Browse files
committed
Initial commit
0 parents  commit b468bd6

18 files changed

+1970
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
vendor/
2+
phpunit.xml
3+
bin/*

README.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
CommandBusCommandBus
2+
=====================
3+
4+
!["Yo dawg, I heard you like command buses, so I put a command bus in your command bus, so you can command bus whilst you command bus"](yodawg.jpg)
5+
6+
Disclaimer
7+
----------
8+
9+
This is a silly little project, you're probably better off just using the command bus which best fits your purpose. All the
10+
command buses used within this project look great, so pick one and don't use this and I'm sure you won't far go wrong :)
11+

composer.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
{
2+
"name": "jenko/command-bus-command-bus",
3+
"description": "A command bus for yo command bus",
4+
"license": "MIT",
5+
"authors": [
6+
{
7+
"name": "Ian Jenkins",
8+
"email": "ian@jenkins-web.co.uk",
9+
"homepage": "http://jenko.me"
10+
}
11+
],
12+
"minimum-stability": "dev",
13+
"require": {
14+
"simple-bus/command-bus": "dev-master",
15+
"league/tactician": "dev-master",
16+
"cairns/sergeant": "dev-master",
17+
"broadway/broadway": "dev-master",
18+
"enginebit/commander": "dev-master"
19+
},
20+
"require-dev": {
21+
"phpunit/phpunit": "~4.3"
22+
},
23+
"autoload": {
24+
"psr-4" : { "Jenko\\CommandBusCommandBus\\" : "src" }
25+
},
26+
"autoload-dev": {
27+
"psr-4" : { "Jenko\\CommandBusCommandBus\\Tests\\" : "tests" }
28+
},
29+
"config": {
30+
"bin-dir": "bin"
31+
}
32+
}

0 commit comments

Comments
 (0)