Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hrace009/config-writer
Write to Laravel Config files and maintain file integrity.
https://github.com/hrace009/config-writer
composer laravel laravel-package php
Last synced: 22 days ago
JSON representation
Write to Laravel Config files and maintain file integrity.
- Host: GitHub
- URL: https://github.com/hrace009/config-writer
- Owner: hrace009
- Created: 2022-02-13T15:21:18.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-07-17T03:35:49.000Z (4 months ago)
- Last Synced: 2024-10-02T05:23:25.679Z (about 1 month ago)
- Topics: composer, laravel, laravel-package, php
- Language: PHP
- Homepage: https://hrace009.github.io/config-writer
- Size: 15.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 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, 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:
```php
hrace009\ConfigWriter\ServiceProvider::class,
```## Usage
You can write to config files like this:
```php
Config::write('app.url', 'http://domain.com');app('config')->write('app.url', 'http://domain.com');
```### Outside Laravel
The `Rewrite` class can be used anywhere.
```php
$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](https://youtube.com/hrace009)