0
7
Login
Code
Issues
Pull requests
Events
Packages
b1617f2d5c15995eca4987b456ca5769551ed45f
b1617f2d5c15995eca4987b456ca5769551ed45f

config-consul

Latest Stable Version Total Downloads License

The consul config component for Hyperf.

Installation

composer require friendsofhyperf/config-consul

Configure

// config/autoload/config_center.php

return [
    'drivers' => [
        'consul' => [
            'driver' => FriendsOfHyperf\ConfigConsul\ConsulDriver::class,
            'packer' => Hyperf\Codec\Packer\JsonPacker::class,
            'uri' => env('CONSUL_URI'),
            'namespaces' => [
                '/application',
            ],
            'mapping' => [
                // consul key => config key
                '/application/test' => 'test',
            ],
            'interval' => 5,
        ],
    ],
];

Sponsor

If you like this project, Buy me a cup of coffee. [ Alipay | WePay ]