devdojo/config-writer

Laravel provider to be able to rewrite configuration

Maintainers

👁 devdojo

Package info

github.com/thedevdojo/config-writer

Homepage

pkg:composer/devdojo/config-writer

Statistics

Installs: 133 825

Dependents: 2

Suggesters: 0

Stars: 1

0.0.7 2024-05-09 23:52 UTC

Requires

  • php: >=7.1.0
  • illuminate/config: 5.*|6.*|7.*|8.*|9.*|10.*|11.*|12.*|13.*|14.*|15.*|16.*|17.*|18.*|19.*|20.*

Requires (Dev)

Suggests

None

Provides

None

Conflicts

None

Replaces

None

MIT f4c7e88222634a989908123225af55ed9ce0bbfa

  • Alexey Bobkov <aleksey.bobkov.woop@gmail.com>
  • Samuel Georges <daftspunky.woop@gmail.com>

configproviderlaravelwriteoctoberoctober cms

This package is auto-updated.

Last update: 2026-06-10 04:41:46 UTC


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 version.

Setup

Install through composer:

composer require "daftspunk/laravel-config-writer"

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

October\Rain\Config\ServiceProvider::class,

Lumen case

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

$app->register(October\Rain\Config\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 October\Rain\Config\DataWriter\Rewrite;
$writeConfig->toFile('path/to/config.php', [
 'item' => 'new value',
 'nested.config.item' => 'value',
 'arrayItem' => ['Single', 'Level', 'Array', 'Values'],
 'numberItem' => 3,
 'booleanItem' => true
]);