2017 © Pedro Peláez
 

library laravel-config-writer

Configuration extension

image

deskti/laravel-config-writer

Configuration extension

  • Saturday, March 31, 2018
  • by socramjunio2
  • Repository
  • 0 Watchers
  • 1 Stars
  • 44 Installations
  • PHP
  • 1 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 7 Versions
  • 16 % Grown

The README.md

Laravel Config Writer for version 5.4

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, booleans and single-dimension arrays., (*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',
    'arrayItem' => ['Single', 'Level', 'Array', 'Values'],
    'numberItem' => 3,
    'booleanItem' => true
]);

The Versions

31/03 2018

dev-master

9999999-dev http://octobercms.com

Configuration extension

  Sources   Download

MIT

The Requires

 

by Samuel Georges
by Alexey Bobkov

laravel write config deskti

31/03 2018

1.0.5

1.0.5.0 http://octobercms.com

Configuration extension

  Sources   Download

MIT

The Requires

 

by Samuel Georges
by Alexey Bobkov

laravel write config deskti

31/03 2018

1.0.4

1.0.4.0 http://octobercms.com

Configuration extension

  Sources   Download

MIT

The Requires

 

by Samuel Georges
by Alexey Bobkov

laravel write config deskti

25/07 2017

1.0.2

1.0.2.0 http://octobercms.com

Configuration extension

  Sources   Download

MIT

The Requires

 

by Samuel Georges
by Alexey Bobkov

laravel write config deskti

25/07 2017

1.0.3

1.0.3.0 http://octobercms.com

Configuration extension

  Sources   Download

MIT

The Requires

 

by Samuel Georges
by Alexey Bobkov

laravel write config deskti

22/07 2017

1.0.1

1.0.1.0 http://octobercms.com

Configuration extension

  Sources   Download

MIT

The Requires

 

by Samuel Georges
by Alexey Bobkov

laravel write config deskti

22/07 2017

1.0.0

1.0.0.0 http://octobercms.com

Configuration extension

  Sources   Download

MIT

The Requires

 

by Samuel Georges
by Alexey Bobkov

laravel write config deskti