0
7
Login
Code
Issues
Pull requests
Events
Packages
fa71fb18345aa80acb1e4e261f3a3be6afe2d9fa
fa71fb18345aa80acb1e4e261f3a3be6afe2d9fa

Hyperf config-consul

Latest Stable Version Total Downloads GitHub 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,
        ],
    ],
];