Skip to content

Commit df8f474

Browse files
cmontezanohuangdijialimingxinleoyansongdaalbertcht
authoredJan 30, 2024
chore(deps): Bump hyper/metric 3.1 (#11)
* [3.1]Bumps dependencies (#5796) Co-authored-by: 李铭昕 <715557344@qq.com> * Upgrade hyperf packages to version `~3.1.0` (#5801) * Bumps `phpunit` to `10.x` (#5802) Co-authored-by: 李铭昕 <715557344@qq.com> * Remove redundant `setAccessible` methods (#5811) * Remove deprecated codes (#5812) * Removed the deprecated code for metric. (#5847) * Use `StrCache` instead of `Str` in special cases. (#5866) * [feat] Support buffer mechanism in standalone process of metric (#6030) Co-authored-by: 李铭昕 <715557344@qq.com> * Fix the bug that cannot stop the command from terminating gracefully (#6090) * Upgrade actions/checkout to v4 (#6159) * Adds `metric.enable_command_metric` switch (#6272) * Changed the `branch-alias` of all components to `3.1-dev`. (#6320) * update dependencies * Remove unused import --------- Co-authored-by: Deeka Wong <huangdijia@gmail.com> Co-authored-by: 李铭昕 <715557344@qq.com> Co-authored-by: yansongda <yansongda@users.noreply.github.com> Co-authored-by: Albert Chen <albert.cht@gmail.com>
1 parent c92e9fe commit df8f474

24 files changed

+2011
-1360
lines changed
 

‎composer.json

+12-11
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
],
1212
"description": "Drop-in replacement for the Hyperf Metric component.",
1313
"require": {
14-
"php": ">=8.0",
15-
"hyperf/codec": "^3.0",
16-
"hyperf/contract": "^3.0",
17-
"hyperf/engine": "^2.9",
18-
"hyperf/guzzle": "^3.0",
19-
"hyperf/support": "^3.0",
20-
"hyperf/utils": "^3.0",
14+
"php": ">=8.1",
15+
"hyperf/codec": "~3.1.0",
16+
"hyperf/contract": "~3.1.0",
17+
"hyperf/engine": "^2.3",
18+
"hyperf/guzzle": "~3.1.0",
19+
"hyperf/support": "~3.1.0",
20+
"hyperf/utils": "~3.1.0",
21+
"psr/container": "^1.0|^2.0",
2122
"promphp/prometheus_client_php": "^2.7",
22-
"psr/container": "^2.0",
2323
"psr/event-dispatcher": "^1.0",
2424
"psr/http-message": "^1.0|^2.0"
2525
},
@@ -44,13 +44,14 @@
4444
"swoole/ide-helper": "^5.0"
4545
},
4646
"suggest": {
47-
"slickdeals/statsd": "Required to use StatdD driver.",
4847
"influxdb/influxdb-php": "Required to use InfluxDB driver.",
4948
"hyperf/di": "Required to use annotations.",
5049
"hyperf/event": "Required to use listeners for default metrics.",
5150
"hyperf/process": "Required to use standalone process, or you have to roll your own",
5251
"hyperf/retry": "Required to use back-off retry implementation.",
53-
"hyperf/http-server": "Required to capture routes in middleware."
52+
"hyperf/http-server": "Required to capture routes in middleware.",
53+
"promphp/prometheus_client_php": "Required to use Prometheus driver.(2.2.*)",
54+
"slickdeals/statsd": "Required to use StatdD driver."
5455
},
5556
"autoload": {
5657
"psr-4": {
@@ -80,7 +81,7 @@
8081
},
8182
"extra": {
8283
"branch-alias": {
83-
"dev-master": "3.0-dev"
84+
"dev-master": "3.1-dev"
8485
},
8586
"hyperf": {
8687
"config": "Hyperf\\Metric\\ConfigProvider"

0 commit comments

Comments
 (0)
Please sign in to comment.