LaravelPackages.net
Acme Inc.
Toggle sidebar
axdlee/laravel-config-writer

Write to Laravel Config files and maintain file integrity. Support Laravel 5.3+

4.061
3
1.0.2
About axdlee/laravel-config-writer

axdlee/laravel-config-writer is a Laravel package for write to laravel config files and maintain file integrity. support laravel 5.3+. It currently has 3 GitHub stars and 4.061 downloads on Packagist (latest version 1.0.2). Install it with composer require axdlee/laravel-config-writer. Discover more Laravel packages by axdlee or browse all Laravel packages to compare alternatives.

Last updated

Laravel Config Writer For Laravel 5.3 + 5.4+

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
]);

Star History Chart