deskti / laravel-config-writer
Configuration extension
Installs: 2 861
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 1
Forks: 0
Open Issues: 1
Requires
- php: >=5.6.4
- illuminate/config: 5.4.*
This package is not auto-updated.
Last update: 2024-11-04 13:33:48 UTC
README
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:
'October\Rain\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 October\Rain\Config\Rewrite; $writeConfig->toFile('path/to/config.php', [ 'item' => 'new value', 'nested.config.item' => 'value', 'arrayItem' => ['Single', 'Level', 'Array', 'Values'], 'numberItem' => 3, 'booleanItem' => true ]);