feihuangorg / config by feihuangorg

Configuration extension
8
0
2
Package Data
Maintainer Username: feihuangorg
Maintainer Contact: lifushui@qq.com (larry)
Package Create Date: 2016-07-21
Package Last Update: 2016-07-21
Language: PHP
License: MIT
Last Refreshed: 2024-03-24 03:18:23
Package Statistics
Total Downloads: 8
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 0
Total Watchers: 2
Total Forks: 0
Total Open Issues: 0

Laravel Config Writer

Write to Laravel Config files and maintain file integrity.

This library is an extension of the Config component used by Laravel. It adds the ability to write to configuration files.

You can rewrite array values inside a basic configuration file that returns a single array definition (like a Laravel config file) whilst maintaining the file integrity, leaving comments and advanced settings intact.

The following value types are supported for writing: strings, integers, booleans and single-dimension arrays.

Usage Instructions

Add this to app/config/app.php under the 'providers' key:

'Feihuangorg\Config\ConfigServiceProvider',

You can now write to config files:

Config::write('app.url', 'http://octobercms.com');

Usage outside Laravel

The Rewrite class can be used anywhere.

$writeConfig = new Feihuangorg\Config\Rewrite;
$writeConfig->toFile('path/to/config.php', [
    'item' => 'new value',
    'nested.config.item' => 'value',
    'arrayItem' => ['Single', 'Level', 'Array', 'Values'],
    'numberItem' => 3,
    'booleanItem' => true
]);