-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathcomposer.json
35 lines (35 loc) · 923 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": "dflydev/es-cqrs-broadway-workshop-one",
"description": "Introduction to Event Sourcing and CQRS with Broadway",
"license": "MIT",
"authors": [
{
"name": "Beau Simensen",
"email": "beau@dflydev.com"
}
],
"autoload": {
"psr-4": {
"SuperAwesome\\": "src/SuperAwesome"
}
},
"require": {
"broadway/broadway": "^2",
"vlucas/phpdotenv": "~1.1",
"doctrine/doctrine-bundle": "~1.4",
"doctrine/dbal": "~2.5",
"symfony/symfony": "^2.8",
"symfony/monolog-bundle": "^3.2",
"predis/predis": "^1.0",
"broadway/broadway-bundle": "^0.4.1",
"broadway/event-store-dbal": "^0.2.1"
},
"autoload-dev": {
"psr-4": {
"SuperAwesome\\": "tests/SuperAwesome"
}
},
"require-dev": {
"phpunit/phpunit": "^7.1"
}
}