-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
45 lines (45 loc) · 1.06 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
{
"name": "scullwm/dbip-client",
"description": "",
"homepage": "https://github.com/scullwm/dbip-client",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Thomas P",
"email": "thomas@scullwm.com"
}
],
"require": {
"php": ">=8.0",
"php-http/discovery": "^1.14",
"php-http/httplug": "^2.2",
"php-http/message-factory": "^1.0",
"psr/http-client": "^1.0",
"ext-json": "*"
},
"require-dev": {
"doctrine/coding-standard": "^9.0",
"nyholm/psr7": "^1.4",
"php-http/message": "^1.12",
"php-http/mock-client": "^1.5",
"phpunit/phpunit": "^9.5"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"autoload": {
"psr-4": {
"Scullwm\\DbIpClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Scullwm\\DbIpClient\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}