Christian Flothmann 07b2c58767 Merge branch '7.1' into 7.2
* 7.1:
  [TwigBridge] Remove `VersionAwareTest` from `AbstractLayoutTestCase`
  [DependencyInjection] Add coverage for error cases of `LazyClosure` and `AutowireLocator`
  [TwigBridge] Fixed a parameterized choice label translation
  Fix extracting of message from ->trans() method with named params
  [TwigBridge] Remove usage of Node() instantiations
  Update security.bg.xlf
  [Dotenv] Default value can be empty
  [Emoji] Update data to support emoji 16
  Add missing Albanian translations for Security and Validator components
  [HttpClient] Add `crypto_method` to scoped client options
  suppress proc_open errors
  [DependencyInjection] Fix `XmlFileLoader` not respecting when env for services
2024-09-28 14:51:41 +02:00
2024-07-23 14:28:30 +02:00
2024-06-20 17:52:34 +02:00
2024-09-28 13:14:12 +02:00
2017-01-12 08:39:44 -08:00
2023-05-23 20:27:00 +02:00
2024-09-28 14:51:41 +02:00
2023-01-24 15:02:46 +01:00
2023-12-08 15:23:08 +01: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%