Krato / laravel-config-writer by Krato1
forked from attrox/laravel-config-writer

Edit and write config files for laravel 5.1 and up
2,737
1
3
Package Data
Maintainer Username: Krato1
Maintainer Contact: eric@infinety.es (Eric Lagarda)
Package Create Date: 2016-05-19
Package Last Update: 2017-03-13
Language: PHP
License: MIT
Last Refreshed: 2024-03-26 03:12:55
Package Statistics
Total Downloads: 2,737
Monthly Downloads: 0
Daily Downloads: 0
Total Stars: 1
Total Watchers: 3
Total Forks: 1
Total Open Issues: 0

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

Install through composer:

composer require "infinety-es/config"

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

'Infinety\Config\ConfigServiceProvider',

You can now write to config files:

Config::write('app.url', 'http://infinety.es');

Usage outside Laravel

The Rewrite class can be used anywhere.

$writeConfig = new Infinety\Config\Rewrite;
$writeConfig->toFile('path/to/config.php', [
    'item' => 'new value',
    'nested.config.item' => 'value'
]);