Popularity
8.1
Stable
Activity
5.7
-
3,689
14
28

Monthly Downloads: 3,821,517
Programming language: PHP
License: MIT License
Tags: Environment     Configuration     Env     Dotenv    
Latest version: v5.2.0

Symfony Dotenv alternatives and similar libraries

Based on the "Configuration" category.
Alternatively, view Symfony Dotenv alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of Symfony Dotenv or a related project?

Add another 'Configuration' Library

README

Dotenv Component

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