inoplate / config
Inoplate configuration repository
Installs: 9
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:composer
Requires
- illuminate/cache: ^5.3
Requires (Dev)
- benconstable/phpspec-laravel: ~3.0@dev
- laravel/laravel: dev-develop
- phpspec/phpspec: ^3.0
- phpunit/phpunit: ^5.5
- vlucas/phpdotenv: ^2.3
This package is not auto-updated.
Last update: 2024-10-26 19:59:07 UTC
README
Inoplate database configuration is a PHP package to load configuration from database.
Example
$config->has($key) // determine if config has value $config->get($key, $default); // retrieve config value from database $config->all() // retrieve all configuration $config->set($key, $value, $cacheExpiration); // set config value to database and automatically cached. Default cache expiration is 10 minutes
Instalation
composer install inoplate/config
Integration
Currently this package only provide integration to Laravel ^5.3. To integrate, please follow the steps described below.
1. Add Inoplate\Config\Laravel\ConfigServiceProvider to your providers configuration.
2. Migrate your database.
3. Change the bootstrappers on your kernel, this file defaultly located in app/Http/Kernel.php and app/Console/Kernel.php.
4. Look at their parent class, we need to overrider the bootstrappers property.
* For Http located at vendor/laravel/framework/src/Illuminate/Foundation/Http/Kernel.php
* For Console loacated at vendor/laravel/framework/src/Illuminate/Foundation/Console/Kernel.php
5. Copy and paste the bootstrappers and change 'Illuminate\Foundation\Bootstrap\LoadConfiguration' with 'Inoplate\Config\Laravel\LoadConfiguration'
6. Use as usual
Please Note.
1. This package will only persist config via set() call. Call via push(), prepend() and ArrayAccess will not persisted.
2. This package will do necessary cache under the hood
3. Use fully qualified name such as "app.name" and it's value. This package is not supporting nested key such as [app => ['name' => 'My Application', 'site' => 'https://mysites.com']] yet
Running the tests
This package using phpspec as specification testing and PHPUnit as integration testing. To run phpspec simply run vendor/bin/phpspec run. To run laravel integration test run vendor/bin/phpunit -c tests/laravel/phpunit.xml.
Contribution
Thank you for considering contributing to the this package. Just create pull request to and elaborate your purpose. We can discuss about the coding standart, branching strategy, etc.
License
This project is licensed under the MIT License