feat: initial commit
This commit is contained in:
commit
a96d506f04
39 changed files with 18010 additions and 0 deletions
18
load.environment.php
Normal file
18
load.environment.php
Normal file
|
@ -0,0 +1,18 @@
|
|||
<?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();
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue