Laravel provider to be able to rewrite configuration
kazak71/laravel-config-writer is a Laravel package for laravel provider to be able to rewrite configuration.
It currently has 0 GitHub stars and 6 downloads on Packagist (latest version v4.0.0).
Install it with composer require kazak71/laravel-config-writer.
Discover more Laravel packages by kazak71
or browse all Laravel packages to compare alternatives.
Last updated
This package was forked daftspunk/laravel-config-writer and the errors that were made in the original package were fixed.
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.
This provider is designed to be used in Laravel from 5.4 version.
Install through composer:
composer require "kazak71/laravel-config-writer"
Using Laravel 5.4?
If you are installing with Laravel 5.4 you will need to add this to
app/config/app.phpunder the 'providers' key.
Otherwise, if you are on 5.5 this happens automatically thanks to package auto-discovery.October\Rain\Config\ServiceProvider::class,
Add this to bootstrap/app.php in the 'service providers' section declaration:
$app->register(October\Rain\Config\ServiceProvider::class);
You can write to config files like this:
Config::write('app.url', 'http://domain.com');
app('config')->write('app.url', 'http://domain.com');
The Rewrite class can be used anywhere.
$writeConfig = new October\Rain\Config\DataWriter\Rewrite;
$writeConfig->toFile('path/to/config.php', [
'item' => 'new value',
'nested.config.item' => 'value',
'arrayItem' => ['Single', 'Level', 'Array', 'Values'],
'numberItem' => 3,
'booleanItem' => true
]);