SergeyMiracle / laravel-config-writer by SergeyMiracle
forked from daftspunk/laravel-config-writer

Configuration extension
2,508
8
2
Package Data
Maintainer Username: SergeyMiracle
Maintainer Contact: sergeymiracle@gmail.com (SergeyMiracle)
Package Create Date: 2017-03-16
Package Last Update: 2017-03-16
Language: PHP
License: MIT
Last Refreshed: 2024-04-17 15:05:38
Package Statistics
Total Downloads: 2,508
Monthly Downloads: 161
Daily Downloads: 3
Total Stars: 8
Total Watchers: 2
Total Forks: 2
Total Open Issues: 0

Laravel 5.4 Config Writer

Write to Laravel Config files and maintain file integrity.

This library is an extension of the Config component used by Laravel 5.4. 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.

Fork of octobercms\laravel-config-writer.

Usage Instructions

Install through composer:

composer require "sergeymiracle/config-writer"

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

SergeyMiracle\Config\ConfigServiceProvider::class,

You can now write to config files:

Config::write(['app.url' => 'http://domain.com']);

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

Usage outside Laravel

The Rewrite class can be used anywhere.

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