0
7
Login
Code
Issues
Pull requests
Events
Packages
811331fb91eee19ee8d27391b3d4771848926720
811331fb91eee19ee8d27391b3d4771848926720

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 ]