yicang / config
configCenter
Installs: 3 610
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=8
- hyperf/config-center: ^3.0
- hyperf/contract: ^3.0
- hyperf/utils: ^3.0
- lysice/hyperf-redis-lock: ^2.1
- psr/container: ^1.0|^2.0
This package is auto-updated.
Last update: 2025-03-22 05:38:58 UTC
README
ecconfig
config/autoload/config_center.php
(bool)env('CONFIG_CENTER_ENABLE', true), 'driver' => env('CONFIG_CENTER_DRIVER', 'apollo'), 'mode' => env('CONFIG_CENTER_MODE', Mode::PROCESS), 'drivers' => [ 'ecconfig' => [ 'driver' => Yicang\Config\ConfigDriver::class, 'server' => env('ECCONFIG_CONFIG_URL', 'http://127.0.0.1:8080/api/config/http'), 'appid' => env('ECCONFIG_APPID', 'test'), 'secret' => env('ECCONFIG_SECRET', 'test'), 'cluster' => env('ECCONFIG_CLUSTER', 'cn-shenzhen'), 'namespaces' => explode(',', env('ECCONFIG_NAMESPACES', 'databases,redis')), 'interval' => 60, 'strict_mode' => true, 'client_ip' => current(swoole_get_local_ip()), 'pullTimeout' => 120, 'interval_timeout' => 1, ] ], ];