devdojo / config-writer
Laravel 提供器,允许重写配置
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)
- orchestra/testbench: 3.8
- phpunit/phpunit: ^7.0
README
向 Laravel 配置文件写入内容并维护文件完整性。
这个库是 Laravel 使用的 Config 组件的扩展。它增加了向配置文件写入的能力。
您可以在返回单个数组定义的基本配置文件(如 Laravel 配置文件)内重写数组值,同时保持文件完整性,保留注释和高级设置。
支持以下值类型进行写入:字符串、整数、布尔值和单维度数组。
支持
此提供器从 5.4
版本开始设计用于 Laravel。
设置
通过 composer 安装
composer require "daftspunk/laravel-config-writer"
将以下内容添加到 app/config/app.php
中的 'providers' 键下
October\Rain\Config\ServiceProvider::class,
Lumen 情况
将以下内容添加到 bootstrap/app.php
中的 'service providers' 部分声明
$app->register(October\Rain\Config\ServiceProvider::class);
用法
您可以像这样向配置文件写入内容
Config::write('app.url', 'http://domain.com'); app('config')->write('app.url', 'http://domain.com');
在 Laravel 外部
Rewrite
类可以在任何地方使用。
$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 ]);