topphp / topphp-consul
服务中心客户端组件
Requires
- php: ~7.2
- ext-json: *
- topphp/topphp-client: ^1.0.0
- topthink/framework: ^6.0.2
Requires (Dev)
- squizlabs/php_codesniffer: ^3.5
- swoole/ide-helper: *
- topphp/topphp-testing: ^1.0.0
This package is auto-updated.
Last update: 2025-02-12 21:32:36 UTC
README
#服务中心客户端
topphp提供了一个consul组件,基于
topphp/topphp-client
提供的http
客户端进行的封装,依赖于thinkphp6
。 topphp-swoole 组件已经内置该组件
单独安装
# 运行以下命令
$ composer require topphp/topphp-consul
配置
配置文件
config/consul.php
<?php return [ 'uri' => '127.0.0.1:8500' ];
使用
获取相应客户端对象
<?php $this->agent = App::make(Agent::class); $this->kv = App::make(KV::class); $this->health = App::make(Health::class); //返回一个 `ConsulResponse` 对象,可以通过 `->json()` 获取相应json数据 $services = $this->health->service($serviceName); $services = $this->health->service($serviceName)->json();
相关api
Catalog
Session
注意
交互输入必须使用英文半角输入法,否则会出现字符确实.
现代的PHP组件都使用语义版本方案(http://semver.org), 版本号由三个点(.)分数字组成(例如:1.13.2).第一个数字是主版本号,如果PHP组件更新破坏了向后兼容性,会提升主版本号. 第二个数字是次版本号,如果PHP组件小幅更新了功能,而且没有破坏向后兼容性,会提升次版本号. 第三个数字(即最后一个数字)是修订版本号,如果PHP组件修正了向后兼容的缺陷,会提升修订版本号.
Structure
组件结构
bin/
build/
docs/
config/
src/
tests/
vendor/
Change log
Please see CHANGELOG for more information on what has changed recently.
Testing
$ composer test
Contributing
Please see CONTRIBUTING and CODE_OF_CONDUCT for details.
Security
If you discover any security related issues, please email sleep@kaituocn.com instead of using the issue tracker.
Credits
License
The MIT License (MIT). Please see License File for more information.