forked from broadway/broadway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.93 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "broadway/broadway",
"description": "Infrastructure and testing helpers for creating CQRS and event sourced applications.",
"keywords": ["cqrs", "event sourcing", "domain-driven design", "ddd"],
"license": "MIT",
"require": {
"beberlei/assert": "~2.0",
"broadway/uuid-generator": "~0.1.0",
"php": ">=5.5.9",
"ramsey/uuid": "~2.4"
},
"authors": [
{
"name": "Alexander",
"email": "iam.asm89@gmail.com"
},
{
"name": "Emil",
"email": "emil@broekmeulen.com"
},
{
"name": "Fritsjan",
"email": "fritsjan@qandidate.com"
},
{
"name": "othillo",
"email": "othillo@othillo.nl"
},
{
"name": "Willem-Jan",
"email": "wjzijderveld@gmail.com"
},
{
"name": "Qandidate.com",
"homepage": "http://labs.qandidate.com/"
}
],
"require-dev": {
"doctrine/dbal": "~2.4",
"doctrine/mongodb": "~1.0",
"elasticsearch/elasticsearch": "~1.0|^2.0",
"instaclick/base-test-bundle": "~0.5",
"monolog/monolog": "~1.8",
"symfony/console": "~2.4",
"symfony/proxy-manager-bridge": "~2.4"
},
"suggest": {
"doctrine/dbal": "For the BroadwayBundle (to persist events)",
"doctrine/mongodb": "For persisting saga states (required for BroadwayBundle)",
"elasticsearch/elasticsearch": "For persisting read models (required for BroadwayBundle)",
"psr/log-implementation": "Implementation for PSR3, LoggerInterface",
"symfony/console": "For the BroadwayBundle",
"symfony/proxy-manager-bridge": "For the BroadwayBundle"
},
"autoload": {
"psr-0": {
"Broadway\\": "src/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-master": "0.10.x-dev"
}
}
}