forked from broadway/broadway-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
74 lines (74 loc) · 1.79 KB
/
composer.json
File metadata and controls
74 lines (74 loc) · 1.79 KB
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
68
69
70
71
72
73
74
{
"name": "household/broadway-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for broadway/broadway.",
"keywords": [
"cqrs",
"event sourcing",
"domain-driven design",
"ddd"
],
"license": "MIT",
"require": {
"php": ">=7.2",
"household/broadway": "^2.2",
"symfony/console": "^4.0||^5.0",
"symfony/http-kernel": "^4.0||^5.0"
},
"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": {
"symfony/framework-bundle": "^3.4||^4.4|^5.0",
"monolog/monolog": "~2.0",
"symfony/proxy-manager-bridge": "^3.4||^4.4|^5.0",
"phpunit/phpunit": "^8.0",
"matthiasnoback/symfony-config-test": "^4.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.0",
"broadway/broadway-saga": "^0.7",
"broadway/coding-standard": "^1.0"
},
"suggest": {
"psr/log-implementation": "Implementation for PSR3, LoggerInterface",
"broadway/event-store-dbal": "Event store implementation using doctrine/dbal",
"broadway/read-model-elasticsearch": "Elasticsearch read model implementation using elastic/elasticsearch-php"
},
"autoload": {
"psr-4": {
"Broadway\\Bundle\\BroadwayBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Broadway\\Bundle\\BroadwayBundle\\": "test/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}