定制 ftlh2005/imi-config-center 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

ftlh2005/imi-config-center

最新稳定版本:v1.0.4

Composer 安装命令:

composer require ftlh2005/imi-config-center

包简介

基于IMI的配置中心。原phpben/imi-config-center

README 文档

README

Imi-Config-Center

安装:composer require phpben/imi-config-center

基于Imi-Swoole的配置中心
目前只支持阿里云产品ACM NACOS等
如果有热心网友愿意提供配置中心服务器仅供测试的话感激不尽


需要在config目录下新建website.php配置文件
并且在config/config.php配置

    'configs'    =>    [
        'beans'        =>    __DIR__.'/beans.php',
        'website'        =>    __DIR__.'/website.php',
    ],

所有配置都会动态修改到website配置中,你可以使用imi的Imi\Config::get("@app.website.xxx")获取配置
或者使用config函数直接获取配置,例如 config("xxx")
不管是文件还是阿里云其他驱动都如此,文件配置支持热更新修改

在beans配置增加相关配置:

    'ConfigCenter' => [
        // 同步配置间隔时间
        'interval' => 5,
        // 驱动类名
        'driver' => \Phpben\Imi\ConfigCenter\Driver\AliyunMseNacos::class,
        // 阿里云MSENacos配置
        'aliyun_mse_nacos' => [
            // endpoint
            'endpoint' => "mse-xxxxxx-p.nacos-ans.mse.aliyuncs.com",
            // SK
            'secret_key' => "",
            // AK
            'access_key' => "",
            // 实例ID
            'instance_id' => "",
            // DATA_ID
            'data_id' => "",
            // GROUPID
            'group' => "",
            // 命名空间
            'namespace' => "",
        ],
        // 阿里云ACM配置
        'aliyun_acm' => [
            // 命名空间
            'namespace' => "",
            // GROUPID
            'group' => "",
            // SK
            'secret_key' => "",
            // AK
            'access_key' => "",
            // endpoint
            'endpoint' => "acm.aliyun.com",
            // DATA_ID
            'data_id' => "",
        ],
        // FILE文件驱动配置
        'file' => [

        ],
    ],

统计信息

  • 总下载量: 49
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 0
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 0
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2023-10-13