envatic / env
.env editor library
1.0.2
2022-05-23 05:43 UTC
Requires
- php: ^8.1
Requires (Dev)
- phpunit/phpunit: ^8.5
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");