-
Notifications
You must be signed in to change notification settings - Fork 72
/
composer.json
35 lines (35 loc) · 982 Bytes
/
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
{
"name": "jyxo/php",
"type": "library",
"description": "Jyxo PHP Library",
"keywords": ["php", "jyxo", "rpc", "gettext", "webdav", "beholder", "svn", "shell"],
"homepage": "http://jyxo.github.com/php/",
"license": ["BSD-3-Clause"],
"authors": [
{ "name" : "Jaroslav Hanslík" },
{ "name" : "Ondřej Nešpor" }
],
"require": {
"php": "^7.1 || ^8.0"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "1.2.0",
"phpunit/phpunit": "^9.5.0",
"slevomat/coding-standard": "6.4.1"
},
"suggest": {
"guzzlehttp/guzzle": "To use Jyxo\\Webdav client",
"ext-curl": "To use Jyxo\\Rpc client/server or Jyxo\\Webdav client",
"ext-json": "To use Jyxo\\Rpc\\Json client/server or Jyxo\\FirePHP logger",
"ext-xmlrpc": "To use Jyxo\\Rpc\\Xml client/server",
"ext-imap": "To use Jyxo\\Mail\\Parser"
},
"autoload": {
"psr-4": { "Jyxo\\": ["Jyxo/"] }
},
"config": {
"bin-dir": "bin",
"optimize-autoloader": true,
"classmap-authoritative": true
}
}