mirror of
https://github.com/SuiteCRM/SuiteCRM-Core.git
synced 2026-07-26 22:39:11 +08:00
13 lines
361 B
PHP
13 lines
361 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::createUnsafeMutable(__DIR__ . '/../', '.env.test');
|
|
}
|
|
|
|
if (!defined('sugarEntry')) {
|
|
define('sugarEntry', true);
|
|
}
|
|
|
|
require_once __DIR__.'/../php_version.php';
|