envatic / env
.env editor library
Installs: 5
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 3
pkg:composer/envatic/env
Requires
- php: ^8.1
Requires (Dev)
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2025-10-23 13:21:59 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");