hrace009 / config-writer
Write to Laravel Config files and maintain file integrity
Requires
- php: >=7.1.0|^8.0
- illuminate/config: ^5.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0
Requires (Dev)
- phpunit/phpunit: ^8.4
README
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 5.4 - 11.0
version.
Setup
Install through composer:
composer require "hrace009/config-writer"
Add this to app/config/app.php
under the 'providers' key:
hrace009\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 hrace009\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 ]);
Subcribe my YT Channel: hrace009