envatic/env

.env editor library

Maintainers

Package info

github.com/envatic/env

pkg:composer/envatic/env

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

1.0.2 2022-05-23 05:43 UTC

This package is auto-updated.

Last update: 2026-02-23 14:02:30 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");