0
7
Login
Code
Issues
Pull requests
Events
Packages
3302c5012ec3d71e6c4ee36b3b6a8219423dbe22
3302c5012ec3d71e6c4ee36b3b6a8219423dbe22

config-consul

Latest Stable Version Total Downloads License

Installation

composer require friendsofhyperf/config-consul

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