Fabien Potencier 9cee123707 Merge branch '5.4' into 6.0
* 5.4:
  Fix LICENSE year
  Bump license year to 2023
2023-01-01 09:36:10 +01:00
2022-02-21 18:15:17 +01:00
2017-01-12 08:39:44 -08:00
2021-09-30 15:47:35 +02:00
2022-01-26 18:23:29 +01:00
2023-01-01 09:32:19 +01:00
2021-05-26 13:20:16 +02:00

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

Description
⚠️ ARCHIVED: Original GitHub repository no longer exists. Preserved as backup on 2026-01-22T16:32:32.195Z
Readme MIT 770 KiB
Languages
PHP 100%