kphcdr/kconf

There is no license information available for the latest version (v1.0.1) of this package.

Maintainers

Details

github.com/kphcdr/kconf

Source

Issues

Installs: 9

Dependents: 0

Suggesters: 0

Security: 0

Stars: 1

Watchers: 1

Forks: 1

Open Issues: 0

pkg:composer/kphcdr/kconf

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

This package is auto-updated.

Last update: 2025-09-11 15:20:09 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
            ]);
        }