├── CHANGELOG.md ├── LICENSE.md ├── README.md ├── composer.json ├── config └── json-settings.php └── src ├── Facades └── Settings.php ├── LaravelJsonSettingsServiceProvider.php └── SettingsRepository.php /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-json-settings/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-json-settings/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-json-settings/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-json-settings/HEAD/composer.json -------------------------------------------------------------------------------- /config/json-settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-json-settings/HEAD/config/json-settings.php -------------------------------------------------------------------------------- /src/Facades/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-json-settings/HEAD/src/Facades/Settings.php -------------------------------------------------------------------------------- /src/LaravelJsonSettingsServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-json-settings/HEAD/src/LaravelJsonSettingsServiceProvider.php -------------------------------------------------------------------------------- /src/SettingsRepository.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ryangjchandler/laravel-json-settings/HEAD/src/SettingsRepository.php --------------------------------------------------------------------------------