Files
symfony-flex-recipes/phpunit/phpunit/4.7/tests/bootstrap.php
T
Alexander SchranzandGitHub 12d560b51b Add Recipe for PHPUnit 10 (#1239)
* Add Recipe for PHPUnit 10

* Reapply suggestions

* Remove bridge to Symfony 4.4 bootstrap file
2025-03-07 09:37:31 +01:00

10 lines
199 B
PHP

<?php
use Symfony\Component\Dotenv\Dotenv;
require dirname(__DIR__).'/vendor/autoload.php';
if (method_exists(Dotenv::class, 'bootEnv')) {
(new Dotenv())->bootEnv(dirname(__DIR__).'/.env');
}