Skip to content

quentingosset/laravel-config-writer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PHP Composer

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.

Important Note

This library was originally by daftspunk/laravel-config-writer all efforts and credits goes to the author and to the contributors to the original repository. This repo is mostly used internally and might not changed so for updated and latest features please follow the original repository.

Support

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

Setup

Install through composer:

composer require "kevyworks/laravel-config-writer"

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

Kevyworks\Laravel\ConfigWriter\ServiceProvider::class,

Lumen case

Add this to bootstrap/app.php in the 'service providers' section declaration:

$app->register(Kevyworks\Laravel\ConfigWriter\ServiceProvider::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 Kevyworks\Laravel\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,
    'app.name' => '%{env("APP_NAME", "MyNewApp")}'
]);

About

Laravel provider to be able to rewrite configuration

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages