envatic/env

.env editor library

1.0.2 2022-05-23 05:43 UTC

This package is auto-updated.

Last update: 2024-05-23 10:06:56 UTC


README

A .env file editor library for PHP.

Installation

Using Composer:

composer require envatic/env

Usage example

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

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

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