kphcdr / kconf

此包最新版本(v1.0.1)没有可用的许可信息。

v1.0.1 2023-06-25 10:35 UTC

This package is auto-updated.

Last update: 2024-09-11 13:12:07 UTC


README

        //store config
        $r = (new Kconf(\Illuminate\Support\Facades\Cache::repository(\Illuminate\Support\Facades\Cache::getStore()), config("app.name"), $this->app->environment(), 1234))->setNeedCache($this->app->environment("production"))->try();
        if ($c = Arr::get($r, 'data.config')) {
            config([
                "kconf"=>$c
            ]);
        }