Add Recipe for PHPUnit 10 (#1239)

* Add Recipe for PHPUnit 10

* Reapply suggestions

* Remove bridge to Symfony 4.4 bootstrap file
This commit is contained in:
Alexander Schranz
2025-03-07 09:37:31 +01:00
committed by GitHub
parent 03fbeb13bb
commit 12d560b51b
8 changed files with 75 additions and 9 deletions
+1 -3
View File
@@ -4,8 +4,6 @@ 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')) {
if (method_exists(Dotenv::class, 'bootEnv')) {
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
}