nhanchaukp / env-editor
.env 编辑器库
2.0.0
2022-12-07 16:42 UTC
Requires
- php: >=7.4
Requires (Dev)
- phpunit/phpunit: 9.5
This package is auto-updated.
Last update: 2024-09-07 20:17:41 UTC
README
PHP 的 .env
文件编辑器库。
安装
使用 Composer
composer require nhanchaukp/env-editor
使用示例
$envFile = \EnvEditor\EnvFile::loadFrom(__DIR__."/.env.example"); $envFile->setValue("exampleKey", "exampleValue"); $envFile->setValue("LOG_DIR", __DIR__."/logs"); // ... $envFile->saveTo(__DIR__."/.env");