0
7
Login
Code
Issues
Pull requests
Events
Packages
28b44e80d51a1a304b4a959f3a34cf4ae0025a00
28b44e80d51a1a304b4a959f3a34cf4ae0025a00

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