Download the PHP package swavel/settisizer without Composer
On this page you can find all versions of the php package swavel/settisizer. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download swavel/settisizer
More information about swavel/settisizer
Files in swavel/settisizer
Package settisizer
Short Description Easy implementable package to handle application settings for different scopes with flexible storage places
License MIT
Informations about the package settisizer
Settisizer
A nice little package to set and get settings on different scopes. In the current state, you can define settings for a eloquent model (which defines the scope) and general settings (which are always in always in the global scope). There are, or at least will be, different drivers, so your settings can be stored everywhere you want. Yay!
Installation
Holy shit, that was easy! Now let's go
Usage
In a model
The only thing you have to do to use the settisizer in a model (besides to include it in your composer dependencies) is to use the trait in the class like this:
with that given, you just can use it in every instance of that class:
should there be no value stored for the requested setting, don't you worry child, we cover you there! No errors, just a sober null which will be returned. Yay again!
Globaly
In the status quo, one have to have a instance of a concretion of a Settisizer Class, which is, at the moment, always is one of the SettisizerStorage class.
To manage your own config. Run this command.
Developer hints
Run phpUnit tests with ../../../vendor/bin/phpunit
Roadmap
Next steps
- Comment the whole thing
- Facade to access global Settisizer with
- name the settings-table for driver mysql
In progress
27.03.2018
- Write a second driver (mysql, redis)
Done
27.03.2018
- Integrate publish function to write standard config file (to select different drivers)