-
Notifications
You must be signed in to change notification settings - Fork 10
/
composer.json
49 lines (49 loc) · 1.13 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
{
"name": "rxnet/eventstore-client",
"description": "EventStore asynchronous PHP client with reactiveX flavours",
"type": "library",
"keywords": [
"eventsourcing",
"eventstore",
"reactphp",
"reactivex"
],
"license": "MIT",
"authors": [
{
"name": "Vincent Vermersch",
"email": "[email protected]"
},
{
"name": "Dariusz Gafka",
"email": "[email protected]"
},
{
"name": "Marodon Jérémy",
"email": "[email protected]"
}
],
"require": {
"php":"^7.2",
"ext-json": "*",
"ramsey/uuid": "^3.5",
"TrafficCophp/ByteBuffer": "^0.3",
"google/protobuf": "^3.2",
"reactivex/rxphp": "^2.0",
"rxnet/socket": "^0.2.0",
"voryx/event-loop": "^3.0 || ^2.0",
"zendframework/zend-stdlib": "^3.2"
},
"require-dev": {
"protobuf-php/protobuf-plugin": "^0.1.3",
"phpstan/phpstan": "^0.11.1",
"friendsofphp/php-cs-fixer": "^2.14"
},
"autoload": {
"psr-4": {
"Rxnet\\EventStore\\": "src/Rxnet/EventStore",
"Rxnet\\Operator\\": "src/Rxnet/Operator",
"GPBMetadata\\": "src/GPBMetadata"
}
}
}