-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 1.08 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
{
"name": "phpxmlrpc/jsonrpc",
"description": "A php library for building jsonrpc clients and servers",
"license": "BSD-3-Clause",
"homepage": "https://gggeek.github.io/phpxmlrpc-jsonrpc/",
"keywords": [ "webservices", "jsonrpc" ],
"require":
{
"php": "^5.4.0 || ^7.0 || ^8.0",
"ext-json": "*",
"phpxmlrpc/phpxmlrpc": "^4.10.1"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "^4.8 || ^5.0 || ^8.5.12",
"phpunit/phpunit-selenium": "*",
"yoast/phpunit-polyfills": "*"
},
"suggest": {
"ext-curl": "Needed for HTTPS and HTTP 1.1 support, NTLM Auth etc...",
"ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available",
"ext-mbstring": "Needed to allow reception of requests/responses in character sets other than ASCII,LATIN-1,UTF-8"
},
"autoload": {
"psr-4": {"PhpXmlRpc\\JsonRpc\\": "src/"}
},
"config": {
"preferred-install": {
"phpxmlrpc/phpxmlrpc": "source"
}
}
}