forked from ssi-anik/loguzz
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
37 lines (37 loc) · 868 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": "anik/loguzz",
"description": "Loguzz is a guzzlehttp/guzzle request & response logger",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Syed Sirajul Islam Anik",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.1",
"guzzlehttp/guzzle": "^6.2|^7.1",
"guzzlehttp/promises": "^1.5",
"psr/log": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.5.15|^8.4|^9.0",
"monolog/monolog": "^1.12|^2.0"
},
"autoload": {
"psr-4": {
"Loguzz\\": "src/"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Loguzz\\Test\\": "tests/"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}