Popularity
8.2
Growing
Activity
5.9
Declining
3,741
15
28
Monthly Downloads: 4,037,110
Programming language: PHP
License: MIT License
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.
-
PHP Dotenv
Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically. -
IDLES
PHP functional utility library, port of javascript Lodash/Ramda, a set of side-effect free, immutable and automatically curried functions that support lazy evaluation.
Cloudways Early Bird Offer
Get early access to Cloudways' Black Friday/Cyber Monday deal with an additional $75 in free hosting credits on top of the standard BFCM offer!
Promo
www.cloudways.com
Do you think we are missing an alternative of Symfony Dotenv or a related project?
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');