-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
37 lines (37 loc) · 1.04 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
{
"name": "phpxmlrpc/polyfill-xmlrpc",
"description": "A pure-php reimplementation of the API exposed by the native XML-RPC extension",
"license": "BSD-3-Clause",
"keywords": [
"webservices",
"xmlrpc",
"php",
"extension",
"polyfill"
],
"provide": {
"ext-xmlrpc": "*"
},
"require": {
"php": "^5.4.0 || ^7.0 || ^8.0",
"phpxmlrpc/phpxmlrpc": "^4.10.2"
},
"require-dev": {
"ext-curl": "*",
"phpunit/phpunit": "^4.8 || ^5.0 || ^8.5.12",
"phpunit/phpunit-selenium": "*",
"yoast/phpunit-polyfills": "*"
},
"suggest": {
"ext-iconv": "Required when using anything other than utf-8 as target encoding for the decoded xml",
"ext-xmlrpc": "Recommended for running the test suite. We can not declare it in require-dev because it is missing in php 8"
},
"autoload": {
"psr-4": {
"PhpXmlRpc\\Polyfill\\XmlRpc\\": "src/"
},
"files": [
"bootstrap.php"
]
}
}