-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.05 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.05 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
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "logtide/logtide",
"description": "Official PHP SDK for LogTide - log management with Hub/Scope architecture, tracing, breadcrumbs, and integrations",
"type": "library",
"keywords": [
"logtide",
"logging",
"observability",
"tracing",
"monitoring"
],
"license": "MIT",
"authors": [
{
"name": "Polliog",
"email": "giuseppe@solture.it"
}
],
"require": {
"php": "^8.1",
"psr/log": "^3.0",
"psr/http-message": "^1.1 || ^2.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"guzzlehttp/guzzle": "^7.8",
"monolog/monolog": "^3.0"
},
"suggest": {
"guzzlehttp/guzzle": "Required for GuzzleHttpClient transport (^7.8)",
"monolog/monolog": "Required for Monolog handlers (^3.0)"
},
"autoload": {
"psr-4": {
"LogTide\\": "src/"
},
"files": [
"src/functions.php"
]
},
"autoload-dev": {
"psr-4": {
"LogTide\\Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}