-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
39 lines (39 loc) · 1020 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
{
"name": "msschl/monolog-http-handler",
"description": "msschl/monolog-http-handler sends log records to a HTTP server.",
"keywords": [
"monolog",
"handler",
"http"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Markus Schlotbohm",
"email": "[email protected]"
}
],
"prefer-stable": true,
"require": {
"php": "^7.0",
"psr/http-message": "^1.0",
"php-http/client-implementation": "^1.0",
"php-http/httplug": "^1.0",
"php-http/message-factory": "^1.0",
"php-http/discovery": "^1.0",
"monolog/monolog": "^1.23"
},
"require-dev": {
"php-http/mock-client": "^1.0",
"php-http/message": "^1.0",
"guzzlehttp/psr7": "^1.0",
"phpunit/phpunit": "^6.0",
"php-coveralls/php-coveralls": "*"
},
"autoload": {
"psr-4": {
"Msschl\\Monolog\\Handler\\": "src"
}
}
}