-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
47 lines (47 loc) · 1.36 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
{
"name": "mauretto78/simple-event-store-manager",
"type": "library",
"description": "Simple EventStore Manager",
"keywords": ["event", "event sourcing", "domain event", "store manager"],
"homepage": "https://github.com/mauretto78/simple-event-store-manager",
"license": "MIT",
"support": {
"issues": "https://github.com/mauretto78/simple-event-store-manager/issues"
},
"authors": [
{
"name": "Mauro Cassani",
"email": "[email protected]",
"homepage": "https://github.com/mauretto78"
}
],
"autoload": {
"psr-4": {
"SimpleEventStoreManager\\": "src"
}
},
"autoload-dev": {
"psr-4": { "SimpleEventStoreManager\\Tests\\": "tests/" }
},
"require": {
"php": ">=5.6.6",
"ramsey/uuid": "^3.6",
"predis/predis": "^1.1",
"mongodb/mongodb": "^1.1",
"symfony/http-foundation": "^3.3",
"jms/serializer": "1.7.*",
"cocur/slugify": "^2.5",
"elasticsearch/elasticsearch": "5.0.*",
"mauretto78/array-query": "^1.1",
"doctrine/dbal": "^2.6"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.0",
"satooshi/php-coveralls": "dev-master"
},
"suggest": {
"ext-redis": "*",
"ext-mongo": "*",
"ext-PDO": "*"
}
}