gitignore
[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", "webservices" ],
7     "require": {
8         "php": ">=5.3.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.12",
14         "phpunit/phpunit-selenium": "*",
15         "yoast/phpunit-polyfills": "*",
16         "ext-curl": "*",
17         "ext-dom": "*",
18         "ext-mbstring": "*",
19         "ext-xsl": "*",
20         "indeyets/pake": "^1.99",
21         "docbook/docbook-xsl": "^1.79"
22     },
23     "suggest": {
24         "ext-curl": "Needed for HTTPS and HTTP 1.1 support, NTLM Auth etc...",
25         "ext-zlib": "Needed for sending compressed requests and receiving compressed responses, if cURL is not available",
26         "ext-mbstring": "Needed to allow reception of requests/responses in character sets other than ASCII,LATIN-1,UTF-8",
27         "sami/sami": "Required for doc generation using pake. Version constraints: ^3.3 || ^4.1"
28     },
29     "autoload": {
30         "psr-4": {"PhpXmlRpc\\": "src/"}
31     },
32     "config": {
33         "secure-http": false
34     },
35     "repositories": [
36         {
37             "type": "package",
38             "package": {
39                 "name": "docbook/docbook-xsl",
40                 "version": "1.79.1",
41                 "dist": {
42                     "url": "https://sourceforge.net/projects/docbook/files/docbook-xsl/1.79.1/docbook-xsl-1.79.1.zip/download",
43                     "type": "zip"
44                 }
45             }
46         }
47     ]
48 }