Skip to content

Commit 9731f94

Browse files
committed
Reverted composer.json and .gitignore to commit 15fb93d
1 parent 7a90ca9 commit 9731f94

File tree

2 files changed

+18
-27
lines changed

2 files changed

+18
-27
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,4 +12,4 @@ composer.phar
1212
phpunit.xml
1313
vendor/
1414
tests/config/db.config.php
15-
/.phpunit.cache
15+
.phpunit.result.cache

composer.json

Lines changed: 17 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,7 @@
11
{
22
"name": "zendtech/ibmitoolkit",
33
"description": "PHP frontend to XMLSERVICE for IBM i development.",
4-
"keywords": [
5-
"ibmitoolkit",
6-
"ibmxmltoolkit",
7-
"XMLSERVICE",
8-
"IBM i",
9-
"zend",
10-
"as400"
11-
],
4+
"keywords": ["ibmitoolkit","ibmxmltoolkit","XMLSERVICE","IBM i","zend","as400"],
125
"license": "BSD-3-Clause",
136
"authors": [
147
{
@@ -23,37 +16,35 @@
2316
}
2417
],
2518
"require": {
26-
"php": ">=5.3.3",
27-
"ext-mbstring": "*",
28-
"ext-pcre": "*",
29-
"ext-pdo": "*",
30-
"ext-simplexml": "*"
19+
"php": ">=5.3.3",
20+
"ext-mbstring": "*",
21+
"ext-pcre": "*",
22+
"ext-pdo": "*",
23+
"ext-simplexml": "*"
3124
},
3225
"suggest": {
33-
"ext-ibm_db2": "For the Db2 transport",
34-
"ext-odbc": "For the ODBC transport",
35-
"ext-pdo_ibm": "For the PDO Db2 transport",
36-
"ext-pdo_odbc": "For the PDO ODBC transport",
37-
"ext-pcntl": "For the local transport",
38-
"ext-ssh2": "For the SSH transport"
26+
"ext-ibm_db2": "For the Db2 transport",
27+
"ext-odbc": "For the ODBC transport",
28+
"ext-pdo_ibm": "For the PDO Db2 transport",
29+
"ext-pdo_odbc": "For the PDO ODBC transport",
30+
"ext-pcntl": "For the local transport",
31+
"ext-ssh2": "For the SSH transport"
3932
},
4033
"autoload": {
41-
"classmap": [
42-
"ToolkitApi/"
43-
],
34+
"classmap": ["ToolkitApi/"],
4435
"psr-4": {
45-
"ToolkitApi\\": "ToolkitApi"
36+
"ToolkitApi\\":"ToolkitApi"
4637
}
4738
},
4839
"autoload-dev": {
4940
"psr-4": {
50-
"ToolkitApi\\": "ToolkitApi",
51-
"ToolkitApiTest\\": "tests/ToolkitApiTest",
41+
"ToolkitApi\\":"ToolkitApi",
42+
"ToolkitApiTest\\":"tests/ToolkitApiTest",
5243
"ToolkitFunctionalTest\\": "tests/functional"
5344
}
5445
},
5546
"require-dev": {
56-
"phpunit/phpunit": "^10.0",
47+
"phpunit/phpunit": "^8.2",
5748
"symfony/process": "^4.3"
5849
}
5950
}

0 commit comments

Comments
 (0)