-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathcomposer.json
69 lines (69 loc) · 1.72 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
{
"name": "friendsofouro/geteventstore-core",
"description": "EventStore client for PHP (core)",
"type": "library",
"keywords": [
"eventsourcing",
"eventstore"
],
"license": "MIT",
"authors": [
{
"name": "Davide Bellettini",
"email": "davide@bellettini.eu",
"homepage": "http://bellettini.eu/"
},
{
"name": "Nicolò Pignatelli",
"email": "pignatelli.nicolo@gmail.com",
"homepage": "http://nicolopignatelli.me/"
},
{
"name": "Contributors",
"homepage": "https://github.com/friendsofouro/geteventstore-php-core/graphs/contributors"
}
],
"replace": {
"dbellettini/php-eventstore-client": "self.version",
"dbellettini/geteventstore-core": "self.version"
},
"require": {
"php": "~7.2",
"guzzlehttp/psr7": "~1.2",
"ramsey/uuid": "^3.4.1",
"marc-mabe/php-enum": "^3.0",
"php-http/httplug": "^1.1"
},
"require-dev": {
"guzzlehttp/guzzle": "~6.0",
"phpunit/phpunit": "~7.1",
"kevinrob/guzzle-cache-middleware": "^0.7.1",
"doctrine/cache": "~1.4",
"friendsofphp/php-cs-fixer": "~2.2"
},
"suggest": {
"guzzlehttp/guzzle": "Default PSR-7 implementation",
"kevinrob/guzzle-cache-middleware": "Cache HTTP requests",
"doctrine/cache": "Use Doctrine to cache HTTP requests",
"friendsofouro/broadway-eventstore": "Integrate Event Store with Broadway",
"friendsofouro/geteventstore-bundle": "Integrate Event Store with Symfony 2"
},
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"EventStore\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"EventStore\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "0.6.x-dev"
}
}
}