mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2025-08-29 11:00:40 +08:00
15 lines
373 B
PHP
15 lines
373 B
PHP
|
<?php
|
||
|
require_once __DIR__.'/../vendor/autoload.php';
|
||
|
|
||
|
# Load environment variables with Dotenv if .env.test is present.
|
||
|
if (file_exists(__DIR__ . '/../.env.test')) {
|
||
|
$dotenv = Dotenv\Dotenv::create(__DIR__ . '/../', '.env.test');
|
||
|
$dotenv->overload();
|
||
|
}
|
||
|
|
||
|
if (!defined('sugarEntry')) {
|
||
|
define('sugarEntry', true);
|
||
|
}
|
||
|
|
||
|
require_once __DIR__.'/../php_version.php';
|