Comment <extensions> tag before PHPUnit 9.6 (#1219)

This commit is contained in:
Nicolas Grekas
2023-06-23 09:22:27 -04:00
committed by GitHub
parent ae7f097ccf
commit 05995d3734
14 changed files with 171 additions and 0 deletions
@@ -0,0 +1,15 @@
<?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');
}
if ($_SERVER['APP_DEBUG']) {
umask(0000);
}