-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 978 Bytes
/
Copy pathcomposer.json
File metadata and controls
45 lines (45 loc) · 978 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
40
41
42
43
44
45
{
"name": "loghq/loghq",
"description": "loghq log streaming - PHP SDK",
"type": "library",
"license": "MIT",
"homepage": "https://loghq.org",
"keywords": [
"loghq",
"logging",
"log-management",
"log-streaming",
"observability",
"php"
],
"support": {
"issues": "https://github.com/loghqorg/loghq-php/issues",
"source": "https://github.com/loghqorg/loghq-php"
},
"require": {
"php": ">=8.4",
"ext-curl": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5 || ^11.0"
},
"autoload": {
"psr-4": {
"LogHQ\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"LogHQ\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit"
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}