-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
37 lines (37 loc) · 1.01 KB
/
Copy pathcomposer.json
File metadata and controls
37 lines (37 loc) · 1.01 KB
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": "mrnaeem4/laravel-request-analysis",
"description": "Laravel middleware that intercepts incoming HTTP requests and writes structured JSON request logs (JSONL) to the Laravel storage/logs directory with daily rotation and gzip compression.",
"type": "library",
"license": "MIT",
"keywords": [
"laravel",
"request-log",
"jsonl",
"middleware",
"log-rotation"
],
"require": {
"php": "^8.2",
"illuminate/contracts": "^12.0",
"illuminate/http": "^12.0",
"illuminate/support": "^12.0"
},
"autoload": {
"psr-4": {
"MrNaeem\\LaravelRequestAnalysis\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"MrNaeem\\LaravelRequestAnalysis\\RequestLogServiceProvider"
]
}
},
"config": {
"sort-packages": true
},
"support": {
"issues": "https://github.com/mrnaeem4/laravel-request-analysis/issues"
}
}