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

Laravel provider to be able to rewrite configuration

92
1
v8.0.0
About jubayed/laravel-config-writer

jubayed/laravel-config-writer is a Laravel package for laravel provider to be able to rewrite configuration. It currently has 1 GitHub stars and 92 downloads on Packagist (latest version v8.0.0). Install it with composer require jubayed/laravel-config-writer. Discover more Laravel packages by jubayed 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, booleans and single-dimension arrays.

Support

This provider is designed to be used in Laravel from 8.x version.

Setup

Install through composer:

composer require jubayed/laravel-config-writer dev-master

Add this to app/config/app.php under the 'providers' key:

Jubayed\ConfigWriter\ConfigWriterServiceProvider::class,

Usage

You can write to config files like this:

Config::write('app.url', 'http://domain.com');

app('config')->write('app.url', 'http://domain.com');

Outside Laravel

The Rewrite class can be used anywhere.

$writeConfig = new Jubayed\ConfigWriter\DataWriter\Rewrite;
$writeConfig->toFile('path/to/config.php', [
    'item' => 'new value',
    'nested.config.item' => 'value',
    'arrayItem' => ['Single', 'Level', 'Array', 'Values'],
    'numberItem' => 3,
    'booleanItem' => true
]);
Comments