stepanenko3 / laravel-runtime-config
Runtime config based on collection for Laravel
Installs: 163
Dependents: 0
Suggesters: 0
Security: 0
Stars: 6
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/stepanenko3/laravel-runtime-config
Requires
- php: >=8.0
- laravel/framework: >=9.0
README
Description
Runtime config based on collection for Laravel
Requirements
php: >=8.0
laravel/framework: ^9.0
Installation
# Install the package
composer require stepanenko3/laravel-runtime-config
Usage
use Stepanenko3\LaravelRuntimeConfig\Facades\RuntimeConfig; RuntimeConfig::putMany([ 'demo' => 100, ]); RuntimeConfig::get('demo'); // result: 100 runtime_config('demo'); // result: 100
Credits
Contributing
Thank you for considering contributing to this package! Please create a pull request with your contributions with detailed explanation of the changes you are proposing.
License
This package is open-sourced software licensed under the MIT license.