0
7
Login
Code
Issues
Pull requests
Events
Packages
8ab3be0ed301c15b8c230cf879b0d24ccb908208
8ab3be0ed301c15b8c230cf879b0d24ccb908208

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,
        ],
    ],
];

Donate

If you like them, Buy me a cup of coffee.

AlipayWeChat

Contact

License

MIT