Popularity
8.1
Stable
Activity
0.8
-
3,509
11
28
Monthly Downloads: 2,668,709
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. -
Symfony VarDumper
The VarDumper component provides mechanisms for walking through any arbitrary PHP variable. It provides a better dump() function that you can use instead of var_dump(). -
Expose
A beautiful, fully open-source, tunneling service - written in pure PHP -
Safe
All PHP functions, rewritten to throw exceptions instead of returning false -
Notion SDK for PHP
PHP library for the official Notion API.
Build time-series-based applications quickly and at scale.
InfluxDB is the Time Series Platform where developers build real-time applications for analytics, IoT and cloud-native services. Easy to start, it is available in the cloud or on-premises.
Promo
www.influxdata.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');