skcin7 / laravel-settings
Laravel package to achieve persistent settings easily in your Laravel project.
Installs: 26
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
Type:package
Requires
- php: >=5.4.0
- illuminate/support: >=4.1 <6.0
Requires (Dev)
- laravel/framework: >=4.1 <6.0
- mockery/mockery: 0.9.*
- phpunit/phpunit: >=4.8, <6
Suggests
- illuminate/filesystem: Save settings to a JSON file.
This package is auto-updated.
Last update: 2025-03-16 23:18:05 UTC
README
Laravel package to achieve persistent settings easily in your Laravel project.
Credit: This package is based on anlutro/l4-settings by Andreas Lutro. Credit to him for his great work.
Table of Contents
Stability Notice
It's stable.
I'm actively using this package in my own Laravel projects for managing backups. I would appreciate all feedback/suggestions you may have by opening a GitHub issue.
Requirements
- PHP 5.4
- Laravel
Installation
Use Composer
It's super easy.
-
Run the following command:
composer require skcin7/laravel-settings
. -
Publish the configuration file:
php artisan vendor:publish --provider="skcin7\LaravelSettings\ServiceProvider"
. After publishing, edit this configuration file (which will be located inconfig/settings.php
) to your specific configuration needs.
After this, both the Setting
facade and setting()
helper will be available to you for accessing this package.
Contribution Guidelines
// TODO
Maintainers
This package is maintained by Nick Morgan.
License
This package is published under the MIT License.