forked from prooph/proophessor-do
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
91 lines (91 loc) · 2.96 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
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "prooph/proophessor-do",
"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": "[email protected]",
"homepage": "http://prooph-software.com/"
},
{
"name": "Sandro Keil",
"email": "[email protected]",
"homepage": "http://prooph-software.com/"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"homepage": "http://getprooph.org/",
"require": {
"php": "^7.1",
"aura/router" : "^3.0",
"doctrine/dbal": "^2.5.5",
"marc-mabe/php-enum": "^2.3.1",
"prooph/common" : "^4.1.0",
"prooph/event-sourcing" : "^5.0",
"prooph/event-store" : "^7.0",
"prooph/event-store-bus-bridge" : "^3.0",
"prooph/pdo-event-store": "^1.0",
"prooph/psr7-middleware": "^0.5",
"prooph/service-bus" : "^6.0",
"roave/security-advisories": "dev-master",
"sandrokeil/interop-config": "^2.0.1",
"zendframework/zend-config": "^2.6",
"zendframework/zend-expressive" : "^2.0",
"zendframework/zend-expressive-aurarouter": "^2.0",
"zendframework/zend-expressive-helpers": "^4.0",
"zendframework/zend-expressive-zendviewrenderer": "^1.4.0",
"zendframework/zend-filter": "^2.7.1",
"zendframework/zend-servicemanager" : "^3.1.1",
"zendframework/zend-stdlib": "^3.1.0",
"zendframework/zend-mail": "^2.7.1",
"zendframework/zend-validator": "^2.8.1",
"psr/container": "^1.0",
"zendframework/zend-config-aggregator": "^0.2.0"
},
"require-dev" : {
"prooph/php-cs-fixer-config": "^0.1.1",
"filp/whoops": "^2.1.8",
"phpunit/phpunit": "^6.0",
"phpspec/prophecy": "^1.7",
"proophsoftware/prooph-cli": "^0.2.0",
"symfony/stopwatch": "^3.2",
"satooshi/php-coveralls": "^1.0",
"malukenho/docheader": "^0.1.4",
"zfcampus/zf-development-mode": "^3.1"
},
"suggest" : {
"prooph/snapshotter": "^2.0 for snapshotter",
"prooph/pdo-snapshot-store": "^1.0 for pdo snapshot store",
"prooph/mongodb-snapshot-store": "^1.0 for mongodb snapshot store"
},
"autoload" : {
"psr-4" : {
"Prooph\\ProophessorDo\\" : "src"
}
},
"autoload-dev" : {
"psr-4" : {
"ProophTest\\ProophessorDo\\": "tests/"
}
},
"scripts": {
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status"
}
}