axdlee/laravel-config-writer
最新稳定版本:1.0.2
Composer 安装命令:
composer require axdlee/laravel-config-writer
包简介
Write to Laravel Config files and maintain file integrity. Support Laravel 5.3+
README 文档
README
Write to Laravel Config files and maintain file integrity.
This library can support Lravel 5.3+.
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.
Usage Instructions
Add this to config/app.php under the 'providers' key:
Axdlee\Config\ConfigServiceProvider::class,
You can now write to config files:
Config::write('app.url', 'http://xdlee.com');
Usage outside Laravel
The Rewrite class can be used anywhere.
$writeConfig = new Axdlee\Config\Rewrite; $writeConfig->toFile('path/to/config.php', [ 'item' => 'new value', 'nested.config.item' => 'value', 'arrayItem' => ['Single', 'Level', 'Array', 'Values'], 'numberItem' => 3, 'booleanItem' => true ]);
统计信息
- 总下载量: 4.05k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 3
- 点击次数: 0
- 依赖项目数: 1
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2017-04-20