sitic / settings
Categories for Project Settings
dev-main
2021-09-13 16:55 UTC
Requires
- cviebrock/eloquent-sluggable: ^8.0
- guzzlehttp/guzzle: ^7.3
- laravel/lumen: 8.x-dev
- laravel/lumen-framework: ^8.0
- laravelista/lumen-vendor-publish: ^8.0
- ramsey/uuid: ^4.2
- spatie/laravel-permission: ^5.1
This package is auto-updated.
Last update: 2025-03-14 00:16:57 UTC
README
This package is for creating Setting Categories. Recommened with some of direct settings package.
LUMEN Implementation
1. Install the package
composer require sitic/settings
2. Add in bootstrap/app.php
Config Files
/* |-------------------------------------------------------------------------- | Register Config Files |-------------------------------------------------------------------------- | | Now we will register the "app" configuration file. If the file exists in | your configuration directory it will be loaded; otherwise, we'll load | the default version. You may register other files below as needed. | */ $app->configure('settings');
Providers
/* |-------------------------------------------------------------------------- | Register Service Providers |-------------------------------------------------------------------------- | | Here we will register all of the application's service providers which | are used to bind services into the container. Service providers are | totally optional, so you are not required to uncomment this line. | */ $app->register(\Sitic\Settings\SettingsServiceProvider::class);
3. Run migrations
php artisan migrate
4. Install default settings
php artisan sitic:settings