-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
40 lines (40 loc) · 966 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
36
37
38
39
40
{
"name": "ibmi/mapepire-php",
"type": "library",
"description": "mapepire-php is a PHP client for the Mapepire database access layer for Db2 on IBM i.",
"homepage": "https://mapepire-ibmi.github.io/",
"keywords": [
"ibmi",
"db2",
"database"
],
"license": "Apache-2.0",
"authors": [
{
"name": "Jack Woehr",
"email": "[email protected]"
},
{
"name": "Yeshua Hall",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Mapepire\\": "src/"
}
},
"require": {
"php": ">=8.1",
"phrity/websocket": "^2.2.3",
"vlucas/phpdotenv": "^5.6.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5.35"
},
"scripts": {
"doc": "phpDocumentor",
"test": "phpunit --colors=always",
"list-test-suites": "phpunit --list-suites"
}
}