Skip to content

Commit

Permalink
chore: Deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
leocavalcante committed Jan 30, 2024
1 parent 14acc61 commit 184f295
Show file tree
Hide file tree
Showing 5 changed files with 260 additions and 33 deletions.
141 changes: 127 additions & 14 deletions all.json
Original file line number Diff line number Diff line change
Expand Up @@ -1501,6 +1501,118 @@
"issues": "https://github.com/opencodeco/hyperf-metric/issues"
}
},
"v3.1.0": {
"name": "hyperf/metric",
"version": "v3.1.0",
"version_normalized": "3.1.0.0",
"source": {
"type": "git",
"url": "https://github.com/opencodeco/hyperf-metric.git",
"reference": "df8f474717115fe60fc12dc5a174c36178022873"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/opencodeco/hyperf-metric/zipball/df8f474717115fe60fc12dc5a174c36178022873",
"reference": "df8f474717115fe60fc12dc5a174c36178022873",
"shasum": ""
},
"require": {
"hyperf/codec": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/engine": "^2.3",
"hyperf/guzzle": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/utils": "~3.1.0",
"php": ">=8.1",
"promphp/prometheus_client_php": "^2.7",
"psr/container": "^1.0|^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.21",
"hyperf/async-queue": "^3.0",
"hyperf/config": "^3.0",
"hyperf/db-connection": "^3.0",
"hyperf/di": "^3.0",
"hyperf/event": "^3.0",
"hyperf/framework": "^3.0",
"hyperf/process": "^3.0",
"hyperf/redis": "^3.0",
"hyperf/testing": "^3.0",
"influxdb/influxdb-php": "^1.15",
"mockery/mockery": "^1.6",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1",
"rector/rector": "^0.17.5",
"slickdeals/statsd": "^3.1",
"swoole/ide-helper": "^5.0"
},
"suggest": {
"hyperf/di": "Required to use annotations.",
"hyperf/event": "Required to use listeners for default metrics.",
"hyperf/http-server": "Required to capture routes in middleware.",
"hyperf/process": "Required to use standalone process, or you have to roll your own",
"hyperf/retry": "Required to use back-off retry implementation.",
"influxdb/influxdb-php": "Required to use InfluxDB driver.",
"promphp/prometheus_client_php": "Required to use Prometheus driver.(2.2.*)",
"slickdeals/statsd": "Required to use StatdD driver."
},
"time": "2024-01-30T18:28:47+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
},
"hyperf": {
"config": "Hyperf\\Metric\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Hyperf\\Metric\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Metric\\": "tests/"
}
},
"scripts": {
"test": [
"co-phpunit"
],
"test-coverage": [
"co-phpunit --coverage-clover clover.xml"
],
"cs-fix": [
"php-cs-fixer fix $1"
],
"analyse": [
"phpstan analyse --memory-limit=-1 -l 5 -c phpstan.neon"
],
"rector": [
"rector process --clear-cache"
]
},
"license": [
"MIT"
],
"description": "Drop-in replacement for the Hyperf Metric component.",
"keywords": [
"hyperf",
"influxdb",
"metrics",
"php",
"prometheus",
"statsd"
],
"support": {
"source": "https://github.com/opencodeco/hyperf-metric/tree/v3.1.0",
"issues": "https://github.com/opencodeco/hyperf-metric/issues"
}
},
"dev-chore/add_docker": {
"name": "hyperf/metric",
"version": "dev-chore/add_docker",
Expand Down Expand Up @@ -1622,24 +1734,24 @@
"source": {
"type": "git",
"url": "https://github.com/opencodeco/hyperf-metric.git",
"reference": "c92e9fe37c0b808d500cb74328b1cfca86934afd"
"reference": "df8f474717115fe60fc12dc5a174c36178022873"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/opencodeco/hyperf-metric/zipball/c92e9fe37c0b808d500cb74328b1cfca86934afd",
"reference": "c92e9fe37c0b808d500cb74328b1cfca86934afd",
"url": "https://api.github.com/repos/opencodeco/hyperf-metric/zipball/df8f474717115fe60fc12dc5a174c36178022873",
"reference": "df8f474717115fe60fc12dc5a174c36178022873",
"shasum": ""
},
"require": {
"hyperf/codec": "^3.0",
"hyperf/contract": "^3.0",
"hyperf/engine": "^2.9",
"hyperf/guzzle": "^3.0",
"hyperf/support": "^3.0",
"hyperf/utils": "^3.0",
"php": ">=8.0",
"hyperf/codec": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/engine": "^2.3",
"hyperf/guzzle": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/utils": "~3.1.0",
"php": ">=8.1",
"promphp/prometheus_client_php": "^2.7",
"psr/container": "^2.0",
"psr/container": "^1.0|^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0|^2.0"
},
Expand Down Expand Up @@ -1670,14 +1782,15 @@
"hyperf/process": "Required to use standalone process, or you have to roll your own",
"hyperf/retry": "Required to use back-off retry implementation.",
"influxdb/influxdb-php": "Required to use InfluxDB driver.",
"promphp/prometheus_client_php": "Required to use Prometheus driver.(2.2.*)",
"slickdeals/statsd": "Required to use StatdD driver."
},
"time": "2024-01-22T13:37:43+00:00",
"time": "2024-01-30T18:28:47+00:00",
"default-branch": true,
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
"dev-master": "3.1-dev"
},
"hyperf": {
"config": "Hyperf\\Metric\\ConfigProvider"
Expand Down Expand Up @@ -1723,7 +1836,7 @@
"statsd"
],
"support": {
"source": "https://github.com/opencodeco/hyperf-metric/tree/v3.0.8",
"source": "https://github.com/opencodeco/hyperf-metric/tree/v3.1.0",
"issues": "https://github.com/opencodeco/hyperf-metric/issues"
}
}
Expand Down
9 changes: 5 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@
<a href="https://composer.opencodeco.dev">
<h1>opencodeco/composer</h1>
</a>
<span class="badge bg-light text-dark m-1" title="Monday, 22-Jan-2024 15:22:49 UTC">
Last updated: <br class="d-md-none"> <time datetime="2024-01-22T15:22:49+00:00">Monday, 22 Jan 2024 15:22:49 UTC</time>
<span class="badge bg-light text-dark m-1" title="Tuesday, 30-Jan-2024 18:31:05 UTC">
Last updated: <br class="d-md-none"> <time datetime="2024-01-30T18:31:05+00:00">Tuesday, 30 Jan 2024 18:31:05 UTC</time>
</span>
</div>

Expand Down Expand Up @@ -339,14 +339,15 @@ <h5 class="card-title">Setting up this repository in your projects</h5>
<dt class="col-sm-3 col-md-2 field-support">Support</dt>
<dd class="col-sm-9 col-md-10 field-support filter-by">
<ul class="list-unstyled m-0">
<li>Source: <a href="https://github.com/opencodeco/hyperf-metric/tree/v3.0.8">https://github.com/opencodeco/hyperf-metric/tree/v3.0.8</a></li>
<li>Source: <a href="https://github.com/opencodeco/hyperf-metric/tree/v3.1.0">https://github.com/opencodeco/hyperf-metric/tree/v3.1.0</a></li>
<li>Issues: <a href="https://github.com/opencodeco/hyperf-metric/issues">https://github.com/opencodeco/hyperf-metric/issues</a></li>
</ul>
</dd>

<dt class="col-sm-3 col-md-2 field-releases">Releases</dt>
<dd class="col-sm-9 col-md-10 field-releases filter-by" data-package-name="hyperf/metric">

<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/df8f474717115fe60fc12dc5a174c36178022873" title="dist-reference: df8f474717115fe60fc12dc5a174c36178022873">v3.1.0</a>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/c92e9fe37c0b808d500cb74328b1cfca86934afd" title="dist-reference: c92e9fe37c0b808d500cb74328b1cfca86934afd">v3.0.8</a>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/6c2980c32c4b094b4d2ac2491787d3ba8953b4ca" title="dist-reference: 6c2980c32c4b094b4d2ac2491787d3ba8953b4ca">v3.0.7</a>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/25e256777f6000c591eb04f87028023d27053340" title="dist-reference: 25e256777f6000c591eb04f87028023d27053340">v3.0.6</a>
Expand All @@ -356,7 +357,7 @@ <h5 class="card-title">Setting up this repository in your projects</h5>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/253b975ccf3d5ca7da5c30b62c0cd5a7ffa5333c" title="dist-reference: 253b975ccf3d5ca7da5c30b62c0cd5a7ffa5333c">v3.0.2</a>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/64d80349ad433f4493b7c64b322651e916a451ec" title="dist-reference: 64d80349ad433f4493b7c64b322651e916a451ec">v3.0.1</a>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/077f5da5b15096d8b42ba523e62102993378ccd9" title="dist-reference: 077f5da5b15096d8b42ba523e62102993378ccd9">v3.0.0</a>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/c92e9fe37c0b808d500cb74328b1cfca86934afd" title="dist-reference: c92e9fe37c0b808d500cb74328b1cfca86934afd">dev-main</a>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/df8f474717115fe60fc12dc5a174c36178022873" title="dist-reference: df8f474717115fe60fc12dc5a174c36178022873">dev-main</a>
<a class="badge rounded-pill bg-secondary text-light" href="https://api.github.com/repos/opencodeco/hyperf-metric/zipball/ac55627447554858634866d44760bf0b31e810a6" title="dist-reference: ac55627447554858634866d44760bf0b31e810a6">dev-chore/add_docker</a> </dd>


Expand Down
112 changes: 112 additions & 0 deletions p2/hyperf/metric.json
Original file line number Diff line number Diff line change
Expand Up @@ -999,6 +999,118 @@
"source": "https://github.com/opencodeco/hyperf-metric/tree/v3.0.8",
"issues": "https://github.com/opencodeco/hyperf-metric/issues"
}
},
{
"name": "hyperf/metric",
"version": "v3.1.0",
"version_normalized": "3.1.0.0",
"source": {
"type": "git",
"url": "https://github.com/opencodeco/hyperf-metric.git",
"reference": "df8f474717115fe60fc12dc5a174c36178022873"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/opencodeco/hyperf-metric/zipball/df8f474717115fe60fc12dc5a174c36178022873",
"reference": "df8f474717115fe60fc12dc5a174c36178022873",
"shasum": ""
},
"require": {
"hyperf/codec": "~3.1.0",
"hyperf/contract": "~3.1.0",
"hyperf/engine": "^2.3",
"hyperf/guzzle": "~3.1.0",
"hyperf/support": "~3.1.0",
"hyperf/utils": "~3.1.0",
"php": ">=8.1",
"promphp/prometheus_client_php": "^2.7",
"psr/container": "^1.0|^2.0",
"psr/event-dispatcher": "^1.0",
"psr/http-message": "^1.0|^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.21",
"hyperf/async-queue": "^3.0",
"hyperf/config": "^3.0",
"hyperf/db-connection": "^3.0",
"hyperf/di": "^3.0",
"hyperf/event": "^3.0",
"hyperf/framework": "^3.0",
"hyperf/process": "^3.0",
"hyperf/redis": "^3.0",
"hyperf/testing": "^3.0",
"influxdb/influxdb-php": "^1.15",
"mockery/mockery": "^1.6",
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-mockery": "^1.1",
"rector/rector": "^0.17.5",
"slickdeals/statsd": "^3.1",
"swoole/ide-helper": "^5.0"
},
"suggest": {
"hyperf/di": "Required to use annotations.",
"hyperf/event": "Required to use listeners for default metrics.",
"hyperf/http-server": "Required to capture routes in middleware.",
"hyperf/process": "Required to use standalone process, or you have to roll your own",
"hyperf/retry": "Required to use back-off retry implementation.",
"influxdb/influxdb-php": "Required to use InfluxDB driver.",
"promphp/prometheus_client_php": "Required to use Prometheus driver.(2.2.*)",
"slickdeals/statsd": "Required to use StatdD driver."
},
"time": "2024-01-30T18:28:47+00:00",
"type": "library",
"extra": {
"branch-alias": {
"dev-master": "3.1-dev"
},
"hyperf": {
"config": "Hyperf\\Metric\\ConfigProvider"
}
},
"autoload": {
"psr-4": {
"Hyperf\\Metric\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HyperfTest\\Metric\\": "tests/"
}
},
"scripts": {
"test": [
"co-phpunit"
],
"test-coverage": [
"co-phpunit --coverage-clover clover.xml"
],
"cs-fix": [
"php-cs-fixer fix $1"
],
"analyse": [
"phpstan analyse --memory-limit=-1 -l 5 -c phpstan.neon"
],
"rector": [
"rector process --clear-cache"
]
},
"license": [
"MIT"
],
"description": "Drop-in replacement for the Hyperf Metric component.",
"keywords": [
"hyperf",
"influxdb",
"metrics",
"php",
"prometheus",
"statsd"
],
"support": {
"source": "https://github.com/opencodeco/hyperf-metric/tree/v3.1.0",
"issues": "https://github.com/opencodeco/hyperf-metric/issues"
}
}
]
}
Expand Down
Loading

0 comments on commit 184f295

Please sign in to comment.