This repository has been archived by the owner on Jul 27, 2023. It is now read-only.
forked from hyperf/metric
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
76 lines (76 loc) · 2.23 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "hyperf/metric",
"license": "MIT",
"keywords": [
"php",
"hyperf",
"prometheus",
"statsd",
"metrics",
"influxdb"
],
"description": "This is a hyperf/metric version suited for PicPay's Hyperf microservices needs.",
"require": {
"php": ">=8.0",
"hyperf/contract": "^3.0",
"hyperf/guzzle": "^3.0",
"hyperf/utils": "^3.0",
"psr/container": "^1.0|^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"hyperf/command": "^3.0",
"hyperf/config": "^3.0",
"hyperf/db-connection": "^3.0",
"hyperf/di": "^3.0",
"hyperf/event": "^3.0",
"hyperf/process": "^3.0",
"hyperf/redis": "^3.0",
"influxdb/influxdb-php": "^1.15",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^9.5",
"promphp/prometheus_client_php": "^2.6",
"roave/security-advisories": "dev-latest",
"slickdeals/statsd": "^3.1",
"swoole/ide-helper": "^5.0"
},
"suggest": {
"slickdeals/statsd": "Required to use StatdD driver.",
"influxdb/influxdb-php": "Required to use InfluxDB driver.",
"hyperf/di": "Required to use annotations.",
"hyperf/event": "Required to use listeners for default metrics.",
"hyperf/process": "Required to use standalone process, or you have to roll your own",
"hyperf/retry": "Required to use back-off retry implementation.",
"hyperf/http-server": "Required to capture routes in middleware."
},
"autoload": {
"psr-4": {
"Hyperf\\Metric\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Metric\\": "tests/"
}
},
"scripts": {
"test": "bin/phpunit",
"lint": "php-cs-fixer fix"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
},
"hyperf": {
"config": "Hyperf\\Metric\\ConfigProvider"
}
}
}