Adding phpunit-bridge 5.3 recipe, which recommends using PHPUnit directly

This commit is contained in:
Ryan Weaver
2021-02-27 11:10:41 -05:00
parent 59f0b39371
commit 1a88b62d99
6 changed files with 99 additions and 0 deletions
@@ -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');
}