-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
42 lines (42 loc) · 1.1 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
{
"name": "kodus/chrome-logger",
"type": "library",
"description": "PSR-3 (logging), PSR-7 (HTTP) and PSR-15 (middleware) compliant alternative to the original ChromeLogger for PHP",
"license": "MIT",
"authors": [
{
"name": "Rasmus Schultz",
"email": "rasc@jfmedier.dk",
"role": "Developer"
},
{
"name": "Bo Andersen",
"email": "boan@jfmedier.dk",
"role": "Developer"
}
],
"require": {
"php": ">=8.4",
"psr/log": "^1",
"psr/http-message": "^1",
"psr/http-server-middleware": "^1"
},
"require-dev": {
"codeception/codeception": "^5",
"codeception/module-asserts": "^3",
"mockery/mockery": "^1.5",
"nyholm/psr7": "^1.5",
"mindplay/middleman": "^4"
},
"autoload": {
"psr-4": {
"Kodus\\Logging\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kodus\\Logging\\Test\\": "tests/",
"Kodus\\Logging\\Test\\Unit\\": "tests/unit/"
}
}
}