Fix server and client: support LATIN-1 requests/responses where the charset declarati...
[plcapi.git] / composer.json
1 {
2     "name": "phpxmlrpc/phpxmlrpc",
3     "description": "A php library for building xmlrpc clients and servers",
4     "license": "BSD-3-Clause",
5     "homepage": "http://gggeek.github.io/phpxmlrpc/",
6     "keywords": [ "xmlrpc", "webservices" ],
7     "require": {
8         "php": ">=5.3.0",
9         "ext-xml": "*"
10     },
11     "require-dev": {
12         "phpunit/phpunit": ">=4.0.0",
13         "phpunit/phpunit-selenium": "*",
14         "codeclimate/php-test-reporter": "dev-master",
15         "ext-curl": "*",
16         "ext-mbstring": "*"
17     },
18     "suggest": {
19         "ext-curl": "Needed for HTTPS and HTTP 1.1 support, NTLM Auth etc...",
20         "ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available",
21         "ext-mbstring": "Needed to allow reception of requests/responses in character sets other than ASCII,LATIN-1,UTF-8"
22     },
23     "autoload": {
24         "psr-4": {"PhpXmlRpc\\": "src/"}
25     }
26 }