build on PRs; nitpicks
[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": "https://gggeek.github.io/phpxmlrpc/",
6     "keywords": [ "xmlrpc", "xml-rpc","webservices" ],
7     "require": {
8         "php": "^5.3.0 || ^7.0 || ^8.0",
9         "ext-xml": "*"
10     },
11     "_comment::tests": "The dev packages below require a minimum of php 5.6, even though we support php 5.3. Can we manage to do better?",
12     "require-dev": {
13         "phpunit/phpunit": "^5.0 || ^8.5.14",
14         "phpunit/phpunit-selenium": "*",
15         "yoast/phpunit-polyfills": "*",
16         "ext-curl": "*",
17         "ext-dom": "*",
18         "ext-mbstring": "*"
19     },
20     "suggest": {
21         "ext-curl": "Needed for HTTPS and HTTP 1.1 support, NTLM Auth etc...",
22         "ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available",
23         "ext-mbstring": "Needed to allow reception of requests/responses in character sets other than ASCII,LATIN-1,UTF-8",
24         "phpxmlrpc/extras": "Adds more featured Server classes and other useful bits",
25         "phpxmlrpc/jsonrpc": "Adds support for the JSON-RPC protocol"
26     },
27     "_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",
28     "conflict": {
29         "phpxmlrpc/extras": "<= 0.6.3"
30     },
31     "autoload": {
32         "psr-4": {"PhpXmlRpc\\": "src/"}
33     }
34 }