-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
37 lines (37 loc) · 912 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
{
"name": "rtheunissen/guzzle-log-middleware",
"description": "Guzzle middleware to log requests and responses",
"keywords": ["guzzle", "http", "middleware", "log", "psr7"],
"license": "MIT",
"authors": [
{
"name": "Rudi Theunissen",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.2",
"guzzlehttp/guzzle": "~6.0|^7.0",
"psr/log": "^1.0|^2.0|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^9.3",
"mockery/mockery": "^1.6"
},
"autoload": {
"psr-4": {
"Concat\\Http\\Middleware\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Concat\\Http\\Middleware\\Test\\": "tests/"
}
},
"suggest": {
"monolog/monolog": "Recommended PSR-3 logger"
},
"scripts": {
"test": "phpunit"
}
}