-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
68 lines (68 loc) · 1.94 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
{
"name": "prooph/event-store-mongodb-adapter",
"description": "MongoDB Adapter for ProophEventStore",
"homepage": "http://getprooph.org/",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alexander Miertsch",
"email": "contact@prooph.de",
"homepage": "http://www.prooph.de"
},
{
"name": "Sascha-Oliver Prolic",
"email": "saschaprolic@googlemail.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^7.1",
"ext-mongodb": "^1.5.2",
"mongodb/mongodb": "^1.4.2",
"prooph/event-store": "^6.3",
"beberlei/assert": "~2.4",
"prooph/common": "^3.7"
},
"require-dev": {
"phpspec/prophecy": "^1.7",
"phpunit/php-invoker": "^2.0",
"phpunit/phpunit": "^7.1.4",
"prooph/php-cs-fixer-config": "^0.3",
"psr/container": "^1.0",
"sandrokeil/interop-config": "^2.0.1",
"satooshi/php-coveralls": "^1.0"
},
"suggest": {
"psr/container": "For usage of provided factories",
"sandrokeil/interop-config": "For usage of provided factories"
},
"config": {
"preferred-install": {
"prooph/*": "source"
},
"sort-packages": true
},
"scripts": {
"check": [
"@cs",
"@docheader",
"@test"
],
"docheader": "vendor/bin/docheader check examples/ src/ tests/",
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit"
},
"autoload": {
"psr-4": {
"Prooph\\EventStore\\Adapter\\MongoDb\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\EventStore\\Adapter\\MongoDb\\": "tests/",
"ProophTest\\EventStore\\": "vendor/prooph/event-store/tests/"
}
}
}