-
Notifications
You must be signed in to change notification settings - Fork 61
/
composer.json
46 lines (46 loc) · 1.27 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
{
"name": "graze/guzzle-jsonrpc",
"description": "JSON-RPC 2.0 client for Guzzle",
"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": ">=5.5|^7.0",
"guzzlehttp/guzzle": "^6.0",
"guzzlehttp/promises": "^1.0",
"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"
}
}