forked from prooph/event-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
75 lines (75 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
{
"name": "prooph/event-store",
"description": "PHP EventStore Implementation",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://getprooph.org/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"keywords": [
"EventStore",
"EventSourcing",
"DDD",
"prooph"
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "~5.5|~7.0",
"beberlei/assert": "~2.3",
"prooph/common" : "~3.7"
},
"require-dev": {
"container-interop/container-interop": "^1.1",
"sandrokeil/interop-config": "^1.0",
"ramsey/uuid" : "~2.8",
"phpunit/phpunit": "~4.8",
"fabpot/php-cs-fixer": "1.7.*",
"satooshi/php-coveralls": "^1.0",
"zendframework/zend-servicemanager": "~2.6",
"tobiju/bookdown-bootswatch-templates": "^1.0"
},
"suggest" : {
"prooph/event-sourcing" : "Basic functionality for event sourced aggregates",
"prooph/service-bus" : "Message bus facade to connect the event store with messaging systems",
"container-interop/container-interop": "For usage of provided factories",
"sandrokeil/interop-config": "For usage of provided factories",
"prooph/event-store-doctrine-adapter": "For usage with doctrine dbal as event store adapter",
"prooph/event-store-flywheel-adapter": "For usage with flywheel as event store adapter",
"prooph/event-store-mongodb-adapter": "For usage with mongodb as event store adapter",
"prooph/snapshot-doctrine-adapter": "For usage with doctrine dbal as snapshot adapter",
"prooph/snapshot-memcached-adapter": "For usage with memcached as snapshot adapter",
"prooph/snapshot-mongodb-adapter": "For usage with mongodb as snapshot adapter"
},
"conflict": {
"sandrokeil/interop-config": "<1.0"
},
"autoload": {
"psr-4": {
"Prooph\\EventStore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\EventStore\\": "tests/"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit"
}
}