forked from proophsoftware/event-machine-skeleton
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
53 lines (53 loc) · 1.37 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
{
"name": "proophsoftware/event-machine-skeleton",
"description": "Dockerized skeleton for prooph software Event Machine",
"homepage": "http://prooph.de/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
{
"name": "Sandro Keil",
"email": "[email protected]",
"homepage": "http://prooph-software.com/"
}
],
"require": {
"php": "^7.1",
"roave/security-advisories": "dev-master",
"proophsoftware/event-machine": "^v0.18",
"proophsoftware/postgres-document-store": "^0.3",
"prooph/pdo-event-store": "^1.0",
"prooph/humus-amqp-producer": "^2.0",
"zendframework/zend-stdlib": "^3.1.0",
"zendframework/zend-config-aggregator": "^0.2.0",
"zendframework/zend-stratigility": "^3.0",
"zendframework/zend-expressive-helpers": "^5.0",
"nikic/fast-route": "^1.0",
"psr/log": "^1.0",
"monolog/monolog": "^1.21",
"psr/http-server-middleware": "^1.0",
"zendframework/zend-problem-details": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0"
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"AppTest\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit"
}
}