-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1008 Bytes
/
Copy pathcomposer.json
File metadata and controls
39 lines (39 loc) · 1008 Bytes
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": "mrnaeem4/ci4-request-analysis",
"description": "CodeIgniter 4 library that intercepts incoming HTTP requests and writes structured JSON request logs (JSONL) to the CI4 logs directory with daily rotation and gzip compression.",
"type": "library",
"license": "MIT",
"keywords": [
"codeigniter4",
"request-log",
"jsonl",
"filter",
"log-rotation"
],
"require": {
"php": "^7.4 || ^8.0",
"codeigniter4/framework": "^4.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"MrNaeem\\Ci4RequestAnalysis\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MrNaeem\\Ci4RequestAnalysis\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"support": {
"issues": "https://github.com/mrnaeem4/ci4-request-analysis/issues"
}
}