forked from webstasolutions/laravel-loki-logging
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
35 lines (35 loc) · 815 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
{
"name": "devig/laravel-loki-logging",
"version": "0.1.1",
"description": "Logging to Loki for Laravel (PHP 8)",
"type": "library",
"authors": [
{
"name": "Sven Mol",
"email": "s.mol@devcake.nl"
},
{
"name": "Jan Bláha",
"email": "jan.blaha@websta.de"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"illuminate/support": "^8 || ^9",
"illuminate/console": "^8 || ^9",
"monolog/monolog": "^2"
},
"autoload": {
"psr-4": {
"Websta\\LaravelLokiLogging\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"Websta\\LaravelLokiLogging\\L3ServiceProvider"
]
}
}
}