Updated phpunit-bridge recipe.

This commit is contained in:
Jan Böhmer 2020-05-10 17:11:21 +02:00
parent 680297320b
commit a12802c1ae
3 changed files with 17 additions and 7 deletions

11
tests/bootstrap.php Normal file
View file

@ -0,0 +1,11 @@
<?php
use Symfony\Component\Dotenv\Dotenv;
require dirname(__DIR__).'/vendor/autoload.php';
if (file_exists(dirname(__DIR__).'/config/bootstrap.php')) {
require dirname(__DIR__).'/config/bootstrap.php';
} elseif (method_exists(Dotenv::class, 'bootEnv')) {
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
}