k-adam/env-editor

.env editor library

2.0.0 2022-06-05 11:17 UTC

This package is auto-updated.

Last update: 2024-05-09 20:33:14 UTC


README

A .env file editor library for PHP.

Installation

Using Composer:

composer require k-adam/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");