WIP - more bugfixes and start of testsuite reimplementation
[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     },
14     "suggest": {
15         "ext-curl": "Needed for HTTPS and HTTP 1.1 support, NTLM Auth etc...",
16         "ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available"
17     },
18     "autoload": {
19         "psr-4": {"PhpXmlRpc\\": "src/"}
20     }
21 }