nhanchaukp/env-editor

.env editor library

2.0.0 2022-12-07 16:42 UTC

This package is auto-updated.

Last update: 2024-05-07 19:45:00 UTC


README

A .env file editor library for PHP.

Installation

Using Composer:

composer require nhanchaukp/env-editor

Usage example

$envFile = \EnvEditor\EnvFile::loadFrom(__DIR__."/.env.example");

$envFile->setValue("exampleKey", "exampleValue");
$envFile->setValue("LOG_DIR", __DIR__."/logs");
// ...

$envFile->saveTo(__DIR__."/.env");