forked from graze/guzzle-jsonrpc
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
57 lines (57 loc) · 1.23 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
{
"name": "evently/guzzle-jsonrpc",
"description": "JSON-RPC 2.0 client for Guzzle with Guzzle 7 compatibillity, forked from graze/guzzle-jsonrpc",
"keywords": [
"guzzle",
"guzzlehttp",
"http",
"json",
"json-rpc",
"jsonrpc",
"ring",
"rpc"
],
"homepage": "https://github.com/graze/guzzle-jsonrpc",
"license": "MIT",
"type": "library",
"config": {
"platform": {
"ext-simplexml": "1.0",
"ext-dom": "1.0",
"ext-tokenizer": "1.0",
"ext-xmlwriter": "1.0"
}
},
"authors": [
{
"name": "Graze tech team",
"homepage": "https://github.com/graze/guzzle-jsonrpc/graphs/contributors"
}
],
"autoload": {
"files": [
"src/functions_include.php"
],
"psr-4": {
"Graze\\GuzzleHttp\\JsonRpc\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Graze\\GuzzleHttp\\JsonRpc\\Test\\": "test/src"
}
},
"require": {
"php": ">=7.0",
"guzzlehttp/guzzle": "^7.4.3",
"guzzlehttp/promises": "^1.5",
"psr/http-message": "^1.0"
},
"require-dev": {
"adlawson/timezone": "~1.0",
"squizlabs/php_codesniffer": "^2.9",
"mockery/mockery": "~0.9",
"phpunit/phpunit": "^4|^5",
"graze/standards": "^1.0"
}
}