Package Data | |
---|---|
Maintainer Username: | axdlee |
Maintainer Contact: | xdlee110@gmail.com (axdlee) |
Package Create Date: | 2017-04-20 |
Package Last Update: | 2017-04-20 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-21 15:00:09 |
Package Statistics | |
---|---|
Total Downloads: | 3,991 |
Monthly Downloads: | 1 |
Daily Downloads: | 0 |
Total Stars: | 3 |
Total Watchers: | 3 |
Total Forks: | 1 |
Total Open Issues: | 2 |
Write to Laravel Config files and maintain file integrity.
This library can support Lravel 5.3+.
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.
Add this to config/app.php
under the 'providers' key:
Axdlee\Config\ConfigServiceProvider::class,
You can now write to config files:
Config::write('app.url', 'http://xdlee.com');
The Rewrite
class can be used anywhere.
$writeConfig = new Axdlee\Config\Rewrite;
$writeConfig->toFile('path/to/config.php', [
'item' => 'new value',
'nested.config.item' => 'value',
'arrayItem' => ['Single', 'Level', 'Array', 'Values'],
'numberItem' => 3,
'booleanItem' => true
]);