-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
88 lines (88 loc) · 2.6 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
{
"name": "prooph/arangodb-snapshot-store",
"description": "ArangoDB Snapshot Store Implementation",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://getprooph.org/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
},
{
"name": "Sandro Keil",
"email": "github@sandro-keil.de"
}
],
"keywords": [
"EventStore",
"EventSourcing",
"DDD",
"prooph",
"ArangoDB",
"Snaphots"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"prooph/snapshot-store" : "^1.1",
"triagens/arangodb": "^3.2"
},
"require-dev": {
"container-interop/container-interop": "^1.1",
"malukenho/docheader": "^0.1.4",
"phpspec/prophecy": "^1.7",
"phpunit/phpunit": "^6.0",
"prooph/php-cs-fixer-config": "^0.1.1",
"sandrokeil/interop-config": "^2.0.1",
"satooshi/php-coveralls": "^1.0",
"zendframework/zend-servicemanager": "^3.1"
},
"suggest" : {
"container-interop/container-interop": "For usage of provided factories",
"prooph/arangodb-event-store": "For usage with ArangoDB as event store",
"prooph/mongodb-event-store": "For usage with MongoDB as event store",
"prooph/pdo-event-store": "For usage with MySQL or Postgres as event store",
"prooph/service-bus" : "Message bus facade to connect the event store with messaging systems",
"sandrokeil/interop-config": "For usage of provided factories"
},
"conflict": {
"sandrokeil/interop-config": "<2.0.1"
},
"autoload": {
"psr-4": {
"Prooph\\SnapshotStore\\ArangoDb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\SnapshotStore\\ArangoDb\\": "tests/",
"ProophTest\\EventSourcing\\": "vendor/prooph/event-sourcing/tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
},
"scripts": {
"check": [
"@cs",
"docheader",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"docheader": "docheader check src/ tests/",
"test": "phpunit"
},
"config": {
"sort-packages": true
}
}