symfony/dotenv

Registers environment variables from a .env file

Installs: 156 742 830

Dependents: 2 250

Suggesters: 19

Security: 0

Stars: 3 738

Watchers: 15

Forks: 29

v7.1.5 2024-09-17 09:16 UTC

This package is auto-updated.

Last update: 2024-09-28 12:52:51 UTC


README

Symfony Dotenv parses .env files to make environment variables stored in them accessible via $_SERVER or $_ENV.

Getting Started

composer require symfony/dotenv
use Symfony\Component\Dotenv\Dotenv;

$dotenv = new Dotenv();
$dotenv->load(__DIR__.'/.env');

// you can also load several files
$dotenv->load(__DIR__.'/.env', __DIR__.'/.env.dev');

// overwrites existing env variables
$dotenv->overload(__DIR__.'/.env');

// loads .env, .env.local, and .env.$APP_ENV.local or .env.$APP_ENV
$dotenv->loadEnv(__DIR__.'/.env');

Resources