feat: initial commit

This commit is contained in:
Oliver Davies 2023-10-18 15:19:03 +02:00 committed by Oliver Davies
commit a96d506f04
39 changed files with 18010 additions and 0 deletions

18
load.environment.php Normal file
View 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();