0
7
Login
Code
Issues
Pull requests
Events
Packages
b5db5338bbf5406f8392da5d2019df08f507e473
b5db5338bbf5406f8392da5d2019df08f507e473

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