0
7
Login
Code
Issues
Pull requests
Events
Packages
352b6d0105497c7caa3192e64cbddaf3f3006c12
352b6d0105497c7caa3192e64cbddaf3f3006c12

config-consul

Latest Stable Version Total Downloads License

The consul config component for Hyperf.

Installation

composer require friendsofhyperf/config-consul:^3.0

Configure

// config/autoload/config_center.php

return [
    'drivers' => [
        'consul' => [
            'driver' => FriendsOfHyperf\ConfigConsul\ConsulDriver::class,
            'packer' => Hyperf\Utils\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 ]