mirror of
https://github.com/symfony/dotenv.git
synced 2026-03-23 23:52:14 +01:00
5.3
* 4.4: Bump license year [HttpClient] Turn negative timeout to a very long timeout Features goes to 6.x branch [Validator] throw when Constraint::_construct() has not been called Bump Symfony version to 4.4.37 Update VERSION for 4.4.36 Update CONTRIBUTORS for 4.4.36 Update CHANGELOG for 4.4.36 Allow symfony/runtime plugin
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
Languages
PHP
100%