forked from zendtech/IbmiToolkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
50 lines (50 loc) · 1.41 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
{
"name": "zendtech/ibmitoolkit",
"description": "PHP frontend to XMLSERVICE for IBM i development.",
"keywords": ["ibmitoolkit","ibmxmltoolkit","XMLSERVICE","IBM i","zend","as400"],
"license": "BSD-3-Clause",
"authors": [
{
"name": "Alan Seiden",
"email": "[email protected]",
"homepage": "http://alanseiden.com"
},
{
"name": "Chuk Shirley",
"email": "[email protected]",
"homepage": "http://github.com/chukShirley"
}
],
"require": {
"php": ">=5.3.3",
"ext-mbstring": "*",
"ext-pcre": "*",
"ext-pdo": "*",
"ext-simplexml": "*"
},
"suggest": {
"ext-ibm_db2": "For the Db2 transport",
"ext-odbc": "For the ODBC transport",
"ext-pdo_ibm": "For the PDO Db2 transport",
"ext-pdo_odbc": "For the PDO ODBC transport",
"ext-pcntl": "For the local transport",
"ext-ssh2": "For the SSH transport"
},
"autoload": {
"classmap": ["ToolkitApi/"],
"psr-4": {
"ToolkitApi\\":"ToolkitApi"
}
},
"autoload-dev": {
"psr-4": {
"ToolkitApi\\":"ToolkitApi",
"ToolkitApiTest\\":"tests/ToolkitApiTest",
"ToolkitFunctionalTest\\": "tests/functional"
}
},
"require-dev": {
"phpunit/phpunit": "^8.2",
"symfony/process": "^4.3"
}
}