laravel-shop/tests/bootstrap.php

14 lines
366 B
PHP
Raw Normal View History

2025-11-29 11:05:02 +00:00
<?php
require __DIR__ . '/../vendor/autoload.php';
// Load package-specific .env
if (file_exists(__DIR__ . '/../.env')) {
\Dotenv\Dotenv::createImmutable(__DIR__ . '/../', '.env')->load();
}
// Load package-specific .env.testing
if (file_exists(__DIR__ . '/../.env.testing')) {
\Dotenv\Dotenv::createImmutable(__DIR__ . '/../', '.env.testing')->load();
}