-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
45 lines (45 loc) · 1.37 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": "tomb1n0/generic-api-client",
"description": "A package to help speed up development when consuming APIs",
"homepage": "https://github.com/tomb1n0/guzzle-mock-handler",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Tom Harper",
"email": "[email protected]"
}
],
"scripts": {
"test": "./vendor/bin/phpunit",
"coverage": "phpdbg -qrr ./vendor/bin/phpunit "
},
"autoload": {
"psr-4": {
"Tomb1n0\\GenericApiClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tomb1n0\\GenericApiClient\\Tests\\": "tests"
}
},
"require": {
"php": "^8.1",
"psr/http-client": "^1.0",
"psr/http-message": "^1.0|^2.0",
"psr/http-factory": "^1.0",
"psr/http-client-implementation": "^1.0",
"psr/http-factory-implementation": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0|^8.0|^9.0",
"mockery/mockery": "^1.5",
"phpstan/phpstan": "^1.9",
"guzzlehttp/guzzle": "^7.5"
},
"suggest": {
"guzzlehttp/guzzle": "A psr/http-client implementation that can be used with this package for a PSR-18 client",
"guzzlehttp/psr7": "A psr/http-factory implementation that can be used with this package for PSR-17 factories"
}
}