Download the PHP package vi-kon/laravel-db-config without Composer
On this page you can find all versions of the php package vi-kon/laravel-db-config. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download vi-kon/laravel-db-config
More information about vi-kon/laravel-db-config
Files in vi-kon/laravel-db-config
Package laravel-db-config
Short Description Laravel 5 database configurator
License MIT
Homepage https://github.com/vi-kon/laravel-db-config
Informations about the package laravel-db-config
Laravel 5 database config
This is Laravel 5 package for storing dynamic config in database.
Table of content
- Features
- Installation
- Usage
- License
Back to top
Features
- Dynamic config stored in database
- Easily add new keys
Back to top
Installation
Via composer
run following command in your project root:
In your Laravel 5 project add following lines to app.php
:
To install database migration file simple call following commands:
This will install create_config_table
migration file to application database/migrations
directory and create new config
table in default database.
Back to top
Usage
- Getting values
- Setting values
- Organize config keys
Getting values
Getting data from database is simple:
Provide default value if key not exists in database
If no parameter provided to config_db
function, then it returns ViKon\DbConfig\DbConfig
instance.
Set values
Set values to database is easy simple call config_db
function with no parameter and after it call set
method.
Organize config keys
For better maintenance there is a support organizing config values to groups. To get or set config value to group simple use {group}::{key}
schema as key.
Back to top
License
This package is licensed under the MIT License
Back to top
All versions of laravel-db-config with dependencies
illuminate/auth Version ~5.1
illuminate/config Version ~5.1
illuminate/container Version ~5.1
illuminate/database Version ~5.1
illuminate/support Version ~5.1