-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.32 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
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "cybercog/opentsdb-client",
"description": "PHP OpenTSDB HTTP Client",
"type": "library",
"license": "MIT",
"keywords": [
"cog",
"cybercog",
"php",
"opentsdb",
"observability",
"monitoring",
"metrics",
"victoriametrics"
],
"authors": [
{
"name": "Anton Komarev",
"email": "[email protected]",
"homepage": "https://komarev.com",
"role": "Developer"
}
],
"homepage": "https://komarev.com/sources/php-opentsdb-client",
"support": {
"email": "[email protected]",
"issues": "https://github.com/cybercog/php-opentsdb-client/issues",
"wiki": "https://github.com/cybercog/php-opentsdb-client/wiki",
"source": "https://github.com/cybercog/php-opentsdb-client",
"docs": "https://github.com/cybercog/php-opentsdb-client"
},
"require": {
"php": "^8.0",
"psr/http-client": "^1.0"
},
"require-dev": {
"php-http/guzzle7-adapter": "^1.0",
"phpunit/phpunit": "^10.0|^9.6"
},
"autoload": {
"psr-4": {
"Cog\\OpenTsdbClient\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Test\\Integration\\Cog\\OpenTsdbClient\\": "test/Integration",
"Test\\Unit\\Cog\\OpenTsdbClient\\": "test/Unit"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable" : true
}