mirror of
https://github.com/symfony/recipes.git
synced 2026-09-11 23:26:27 +03:00
* Add Recipe for PHPUnit 10 * Reapply suggestions * Remove bridge to Symfony 4.4 bootstrap file
10 lines
199 B
PHP
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');
|
|
}
|