19 lines
392 B
PHP
19 lines
392 B
PHP
<?php
|
|
|
|
/**
|
|
* This file is included very early. See autoload.files in composer.json and
|
|
* https://getcomposer.org/doc/04-schema.md#files
|
|
*/
|
|
|
|
use Dotenv\Dotenv;
|
|
|
|
/**
|
|
* Load any .env file. See /.env.example.
|
|
*
|
|
* Drupal has no official method for loading environment variables and uses
|
|
* getenv() in some places.
|
|
*/
|
|
$dotenv = Dotenv::createUnsafeImmutable(__DIR__);
|
|
$dotenv->safeLoad();
|
|
|