-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.72 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "fpoirotte/xrl",
"description": "Simple XML-RPC Library (both client and server)",
"keywords": ["XML", "RPC", "server", "client", "xml-rpc", "xmlrpc"],
"homepage": "https://github.com/fpoirotte/XRL",
"license": "BSD-3-Clause",
"authors": [
{
"name": "François Poirotte",
"email": "[email protected]",
"role": "lead"
}
],
"support": {
"issues": "https://github.com/fpoirotte/XRL/issues",
"wiki": "http://xrl.readthedocs.io/",
"irc": "irc://irc.iiens.net/Erebot",
"source": "https://github.com/fpoirotte/XRL"
},
"require": {
"php": ">=7.1",
"ext-XMLReader": "*",
"ext-XMLWriter": "*",
"ext-libxml": "*",
"ext-SimpleXML": "*",
"ext-SPL": "*",
"ext-Reflection": "*"
},
"require-dev": {
"ext-dom": "*",
"ext-gmp": "*",
"ext-SimpleXML": "*",
"erebot/buildenv": "^1.5.0",
"erebot/plop": "*",
"fpoirotte/natives4doxygen": "*",
"pdepend/pdepend": "*",
"squizlabs/php_codesniffer": ">=1.2.2",
"phpmd/phpmd": "*",
"sebastian/phpcpd": "*",
"phpunit/phpunit": ">=7.0"
},
"suggest": {
"ext-openssl": "Access resources that require an encrypted (SSL/TLS) connection",
"ext-gmp": "Add support for the 'i8' (on 32-bit PHP) & 'bitinteger' types",
"ext-SimpleXML": "Send/receive XML objects",
"erebot/plop": "Log various events"
},
"autoload": {
"psr-4": {
"fpoirotte\\XRL\\": "src/"
}
},
"bin": ["bin/xrl"],
"extra": {
"branch-alias": {
"dev-develop": "3.1.x-dev"
}
}
}