-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.02 KB
/
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
40
41
42
43
44
{
"name": "cego/request-log",
"description": "Package for laravel that enables the logging of all incoming requests",
"type": "project",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Nikolaj Boel Jensen",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"ext-json": "*",
"ext-mbstring": "*",
"nesbot/carbon": "^2.17|^3.0",
"illuminate/http": "^11.0",
"illuminate/support": "^11.0"
},
"require-dev": {
"orchestra/testbench": "^9.0",
"doctrine/dbal": "^4.0",
"cego/php-cs-fixer": "^2.0"
},
"autoload": {
"psr-4": {
"Cego\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Cego\\RequestLog\\RequestLogServiceProvider"
]
}
}
}