infinety-es/config is a Laravel package for edit and write config files for laravel 5.1 and up.
It currently has 1 GitHub stars and 2.985 downloads on Packagist (latest version 1.2).
Install it with composer require infinety-es/config.
Discover more Laravel packages by infinety-es
or browse all Laravel packages to compare alternatives.
Last updated
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 and booleans.
Install through composer:
composer require "infinety-es/config"
Add this to app/config/app.php under the 'providers' key:
'Infinety\Config\ConfigServiceProvider',
You can now write to config files:
Config::write('app.url', 'http://infinety.es');
The Rewrite class can be used anywhere.
$writeConfig = new Infinety\Config\Rewrite;
$writeConfig->toFile('path/to/config.php', [
'item' => 'new value',
'nested.config.item' => 'value'
]);