File: /home/accemeff/vendor/craftcms/cms/tests/_bootstrap.php
<?php
define('YII_ENV', 'test');
// Use the current installation of Craft
define('CRAFT_STORAGE_PATH', __DIR__ . '/_craft/storage');
define('CRAFT_TEMPLATES_PATH', __DIR__ . '/_craft/templates');
define('CRAFT_CONFIG_PATH', __DIR__ . '/_craft/config');
define('CRAFT_VENDOR_PATH', __DIR__ . '/../vendor');
$devMode = true;
$vendorPath = realpath(CRAFT_VENDOR_PATH);
$craftPath = __DIR__ . '/_craft';
$configPath = realpath($craftPath . '/config');
$contentMigrationsPath = realpath($craftPath . '/migrations');
$storagePath = realpath($craftPath . '/storage');
$templatesPath = realpath($craftPath . '/templates');
$translationsPath = realpath($craftPath . '/translations');
// Log errors to craft/storage/logs/phperrors.log
ini_set('log_errors', 1);
ini_set('error_log', $storagePath . '/logs/phperrors.log');
error_reporting(E_ALL);
ini_set('display_errors', 1);
defined('YII_DEBUG') || define('YII_DEBUG', true);
defined('YII_ENV') || define('YII_ENV', 'dev');
defined('CRAFT_ENVIRONMENT') || define('CRAFT_ENVIRONMENT', '');
defined('CURLOPT_TIMEOUT_MS') || define('CURLOPT_TIMEOUT_MS', 155);
defined('CURLOPT_CONNECTTIMEOUT_MS') || define('CURLOPT_CONNECTTIMEOUT_MS', 156);
// Load the files
$srcPath = dirname(__DIR__) . '/src';
$libPath = dirname(__DIR__) . '/lib';
require $vendorPath . '/yiisoft/yii2/Yii.php';
require $srcPath . '/Craft.php';
// Set aliases
Craft::setAlias('@lib', $libPath);
Craft::setAlias('@craft', $srcPath);
Craft::setAlias('@config', $configPath);
Craft::setAlias('@contentMigrations', $contentMigrationsPath);
Craft::setAlias('@storage', $storagePath);
Craft::setAlias('@templates', $templatesPath);
Craft::setAlias('@translations', $translationsPath);