mengsen/consul

consul、服务发现、服务注册、服务管理

dev-master 2020-10-14 06:35 UTC

This package is not auto-updated.

Last update: 2025-04-14 11:49:16 UTC


README

consul

consul、服务发现、服务注册、服务管理

demo

use mengsen\consul\Client;

class test
{
    
    public function index()
    {   
        $conf = config('consul'); //获取配置
        $app = new Client($conf);
        $result = $app->execute(
            'v1/catalog/services',
            [
                'method' => 'post', //默认get
            ]
        );
    }
}