1441 |
ariadna |
1 |
{
|
|
|
2 |
"name": "phpxmlrpc/phpxmlrpc",
|
|
|
3 |
"description": "A php library for building xmlrpc clients and servers",
|
|
|
4 |
"license": "BSD-3-Clause",
|
|
|
5 |
"homepage": "https://gggeek.github.io/phpxmlrpc/",
|
|
|
6 |
"keywords": [ "xmlrpc", "xml-rpc","webservices" ],
|
|
|
7 |
"require": {
|
|
|
8 |
"php": "^5.4.0 || ^7.0 || ^8.0",
|
|
|
9 |
"ext-xml": "*"
|
|
|
10 |
},
|
|
|
11 |
"require-dev": {
|
|
|
12 |
"ext-curl": "*",
|
|
|
13 |
"ext-dom": "*",
|
|
|
14 |
"ext-mbstring": "*",
|
|
|
15 |
"phpunit/phpunit": "^4.8 || ^5.0 || ^8.5.14",
|
|
|
16 |
"phpunit/phpunit-selenium": "*",
|
|
|
17 |
"yoast/phpunit-polyfills": "*"
|
|
|
18 |
},
|
|
|
19 |
"suggest": {
|
|
|
20 |
"ext-curl": "Needed for HTTPS, HTTP2 and HTTP 1.1 support, NTLM Auth etc...",
|
|
|
21 |
"ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available",
|
|
|
22 |
"ext-mbstring": "Needed to allow reception of requests/responses in character sets other than ASCII,LATIN-1,UTF-8",
|
|
|
23 |
"phpxmlrpc/extras": "Adds more featured Server classes, including self-documenting and ajax-enabled servers",
|
|
|
24 |
"phpxmlrpc/jsonrpc": "Adds support for the JSON-RPC protocol"
|
|
|
25 |
},
|
|
|
26 |
"scripts": {
|
|
|
27 |
"setup-git-hooks": "if ln -s -f $(pwd)/.githooks/pre-push.sh .git/hooks/pre-push; then echo hooks installed; else echo fail; fi"
|
|
|
28 |
},
|
|
|
29 |
"_comment::conflict": "Within the extras package, only the XMLRPC extension emulation is not compatible... the JSONRPC part should be ok. Both have been moved to different packages anyway",
|
|
|
30 |
"conflict": {
|
|
|
31 |
"phpxmlrpc/extras": "<= 1.0.0-beta2",
|
|
|
32 |
"phpxmlrpc/jsonrpc": "<= 1.0.0-beta1"
|
|
|
33 |
},
|
|
|
34 |
"autoload": {
|
|
|
35 |
"psr-4": {"PhpXmlRpc\\": "src/"}
|
|
|
36 |
}
|
|
|
37 |
}
|