axdlee / laravel-config-writer
Write to Laravel Config files and maintain file integrity. Support Laravel 5.3+
Installs: 3 991
Dependents: 1
Suggesters: 0
Security: 0
Stars: 3
Watchers: 3
Forks: 1
Open Issues: 2
Requires
- illuminate/config: ^5.3
This package is not auto-updated.
Last update: 2024-11-24 01:22:41 UTC
README
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.
Usage Instructions
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');
Usage outside Laravel
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 ]);