-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
30 lines (30 loc) · 1.02 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
{
"name": "phpxmlrpc/extras",
"description": "A collection of server-side addons that might be of use for development of xml-rpc (and json-rpc) based applications",
"license": "BSD-3-Clause",
"homepage": "https://github.com/gggeek/phpxmlrpc-extras",
"keywords": [ "xmlrpc", "webservices", "jsonrpc" ],
"require": {
"php": "^5.4.0 || ^7.0 || ^8.0",
"phpxmlrpc/phpxmlrpc": "^4.10.1"
},
"require-dev": {
"ext-curl": "*",
"phpxmlrpc/jsonrpc": "^1.0.0-beta1",
"phpunit/phpunit": "^4.8 || ^5.0 || ^8.5.12",
"phpunit/phpunit-selenium": "*",
"yoast/phpunit-polyfills": "*"
},
"suggest": {
"phpxmlrpc/jsonrpc": "Needed for the SonOfAjax demo",
"phpxmlrpc/jsxmlrpc": "Used the Ajax Server component. NB: better installed via NPM or used directly from CDN!"
},
"autoload": {
"psr-4": {"PhpXmlRpc\\Extras\\": "src/"}
},
"config": {
"preferred-install": {
"phpxmlrpc/phpxmlrpc": "source"
}
}
}