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
|
{
"name": "gipfl/protocol-jsonrpc",
"description": "JsonRPC Connection implementation",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas Gelf",
"email": "thomas@gelf.net"
}
],
"config": {
"sort-packages": true
},
"autoload": {
"psr-4": {
"gipfl\\Protocol\\JsonRpc\\": "src"
}
},
"require": {
"php": ">=5.6.0",
"ext-json": "*",
"gipfl/json": ">=0.1",
"gipfl/openrpc": "^0.2.1",
"gipfl/protocol": ">=0.2",
"psr/log": ">=1.1",
"react/promise": ">=2.7",
"react/stream": ">=1.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3 || ^7.5 || ^6.5 || ^5.7",
"squizlabs/php_codesniffer": "^3.6"
}
}
|