forked from prooph/proophessor-do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 2.52 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "prooph/todo",
"description": "CQRS + ES sample app for proophessor",
"license": "BSD-3-Clause",
"keywords": [
"example",
"prooph",
"proophessor",
"zend-expressive",
"cqrs",
"service bus",
"event sourcing",
"snapshots",
"integration"
],
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://prooph-software.com/"
},
{
"name": "Sandro Keil",
"email": "contact@prooph.de",
"homepage": "http://prooph-software.com/"
},
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
}
],
"homepage": "http://getprooph.org/",
"require": {
"php": "^5.5 || ^7.0",
"aura/router" : "^2.3",
"doctrine/dbal": "^2.5.4",
"doctrine/migrations": "^1.4.1",
"nicolopignatelli/valueobjects": "^3.0",
"prooph/event-sourcing" : "^4.0",
"prooph/event-store" : "^6.3",
"prooph/event-store-bus-bridge" : "^2.0",
"prooph/psr7-middleware": "^0.3",
"prooph/service-bus" : "^5.1",
"roave/security-advisories": "dev-master",
"sandrokeil/interop-config": "^1.0",
"zendframework/zend-config": "^2.6",
"zendframework/zend-expressive" : "^1.0",
"zendframework/zend-expressive-aurarouter": "^1.0",
"zendframework/zend-expressive-helpers": "^2.0",
"zendframework/zend-expressive-zendviewrenderer": "^1.1.0",
"zendframework/zend-filter": "^2.7.1",
"zendframework/zend-servicemanager" : "^3.0.3",
"zendframework/zend-stdlib": "^3.0.1",
"zendframework/zend-mail": "^2.7.1"
},
"require-dev" : {
"fabpot/php-cs-fixer": "^1.11.4",
"filp/whoops": "^1.1",
"phpunit/phpunit": "^4.8 || ^5.2",
"proophsoftware/prooph-cli": "^0.2.0",
"symfony/stopwatch": "^2.7",
"satooshi/php-coveralls": "^1.0"
},
"suggest" : {
"prooph/event-store-doctrine-adapter" : "^3.0 Use doctrine dbal event store adapter",
"prooph/event-store-mongodb-adapter" : "^2.0 Use mongo db event store adapter"
},
"autoload" : {
"psr-4" : {
"Prooph\\ProophessorDo\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"ProophTest\\ProophessorDo\\": "tests/",
"Prooph\\ProophessorDo\\Migrations\\" : "migrations"
}
}
}