-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json.dist
84 lines (84 loc) · 2.61 KB
/
composer.json.dist
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
{
"name": "prooph/event-store-http-api",
"description": "EventStore HTTP API",
"type": "library",
"license": "BSD-3-Clause",
"homepage": "http://getprooph.org/",
"authors": [
{
"name": "Alexander Miertsch",
"email": "[email protected]"
},
{
"name": "Sascha-Oliver Prolic",
"email": "[email protected]"
}
],
"keywords": [
"EventStore",
"EventSourcing",
"DDD",
"prooph",
"HTTP",
"API"
],
"require": {
"php": "^7.1",
"psr/container": "^1.0",
"prooph/event-store" : "^7.3.1",
"prooph/pdo-event-store": "^1.6",
"roave/security-advisories": "dev-master",
"sandrokeil/interop-config": "^2.1",
"zendframework/zend-config-aggregator": "^1.0",
"zendframework/zend-diactoros": "^1.7.1",
"zendframework/zend-expressive": "^3.0",
"zendframework/zend-expressive-fastroute": "^3.0",
"zendframework/zend-expressive-helpers": "^5.0",
"zendframework/zend-servicemanager": "^3.3",
"zendframework/zend-stdlib": "^3.1",
"zfcampus/zf-development-mode": "^3.1",
"prooph/event-store-http-middleware": "dev-master"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"phpspec/prophecy": "^1.7",
"prooph/php-cs-fixer-config": "^0.2",
"satooshi/php-coveralls": "^1.0",
"malukenho/docheader": "^0.1.4",
"php-http/guzzle6-adapter": "^1.1.1",
"guzzlehttp/guzzle": "^6.3"
},
"conflict": {
"container-interop/container-interop": "<1.2.0"
},
"autoload": {
"psr-4": {
"Prooph\\EventStore\\Http\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ProophTest\\EventStore\\Http\\Api\\Unit\\": "tests/unit/",
"ProophTest\\EventStore\\Http\\Api\\Integration\\": "tests/integration/",
"ProophTest\\EventStore\\Pdo\\": "vendor/prooph/pdo-event-store/tests/",
"ProophTest\\EventStore\\": "vendor/prooph/event-store/tests/"
}
},
"config": {
"preferred-install": {
"prooph/*": "source"
}
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "php-cs-fixer fix -v --diff --dry-run",
"cs-fix": "php-cs-fixer fix -v --diff",
"test": "phpunit",
"development-disable": "zf-development-mode disable",
"development-enable": "zf-development-mode enable",
"development-status": "zf-development-mode status"
}
}