samireltabal / json-settings
There is no license information available for the latest version (1.0.1) of this package.
Json Settings For Laravel
1.0.1
2023-02-01 11:38 UTC
Requires
- laravel/framework: ^9.0
Requires (Dev)
- laravel/pint: ^1.4
- nunomaduro/larastan: ^2.4
- orchestra/testbench: ^7.19
- phpunit/phpunit: ^9.5
This package is auto-updated.
Last update: 2025-03-29 01:17:06 UTC
README
Library for saving wep app settings in json file with caching.
Version
1.0.0
description
saves settings in json file.. so it can be retrieved quickly without delay time.
usage
- publish config file
- php artisan vendor:publish --tag=config
Limitation
- limited to two levels example
- allowed :
app()->Settings->get('parent.sub')
. - not allowed :
app()->Settings->get('parent.sub.extra')
will throw exception.
- allowed :
api
- get all settings
- app()->Settings->get()
- get settings by key
- app()->Settings->get('parent.sub')
- get settings by key
- app()->Settings->set('parent.sub', 'some-value')
- or you can use the facade directly
- use Samireltabal\JsonSettings\Facades\Settings; // you can alias it.
- Settings::get('key.sub');
- Settings::set('key.sub', 'value');
- use Samireltabal\JsonSettings\Facades\Settings; // you can alias it.
Development
- run
- composer install
- composer test
- composer analyse
- composer format