-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
35 lines (35 loc) · 967 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
{
"name": "malocher/cqrs-esb",
"description": "PHP CQRS ESB Framework",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "https://github.com/malocher/cqrs-esb/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.codeliner.ws/"
},
{
"name": "Manfred Weber",
"email": "[email protected]",
"homepage": "http://dschini.org/"
}
],
"keywords": [
"php",
"cqrs",
"esb",
"framework"
],
"require-dev": {
"phpunit/phpunit": "3.7.*",
"satooshi/php-coveralls": "dev-master"
},
"autoload": {
"psr-0": { "Malocher\\CqrsTest\\": "tests/","Iteration\\": "iterations/","Malocher\\Cqrs\\": "src/" }
},
"suggest": {
"malocher/zf2-cqrs-module": "Integrates malocher/cqrs-esb in a ZF2 application"
}
}