2017 © Pedro Peláez
 

library config

Configuration extension

image

alverated/config

Configuration extension

  • Tuesday, May 17, 2016
  • by alverated
  • Repository
  • 1 Watchers
  • 0 Stars
  • 4 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 35 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Laravel Config Writer

Write to Laravel Config files and maintain file integrity., (*1)

This library is an extension of the Config component used by Laravel. It adds the ability to write to configuration files., (*2)

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., (*3)

The following value types are supported for writing: strings, integers and booleans., (*4)

Usage Instructions

Add this to app/config/app.php under the 'providers' key:, (*5)

'October\Rain\Config\ConfigServiceProvider',

You can now write to config files:, (*6)

Config::write('app.url', 'http://octobercms.com');

Usage outside Laravel

The Rewrite class can be used anywhere., (*7)

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

Original Repo, (*8)

https://github.com/daftspunk/laravel-config-writer, (*9)

The Versions

17/05 2016

dev-master

9999999-dev http://octobercms.com

Configuration extension

  Sources   Download

MIT

The Requires

 

by Avatar alverated
by Samuel Georges

laravel write config october october cms