LaravelPackages.net
Acme Inc.
Toggle sidebar
alverated/config

Configuration extension

12
0
About alverated/config

alverated/config is a Laravel package for configuration extension. It currently has 0 GitHub stars and 12 downloads on Packagist. Install it with composer require alverated/config. Discover more Laravel packages by alverated or browse all Laravel packages to compare alternatives.

Last updated

Laravel Config Writer

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.

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

Original Repo

https://github.com/daftspunk/laravel-config-writer

Comments