2019-02-21 01:28:52 +05:30
|
|
|
<?php
|
2019-02-26 04:56:02 +05:30
|
|
|
defined('YII_DEBUG') || define('YII_DEBUG', true);
|
|
|
|
defined('YII_ENV') || define('YII_ENV', 'test');
|
2019-02-21 01:28:52 +05:30
|
|
|
|
2019-02-26 04:56:02 +05:30
|
|
|
defined('YII_APP_BASE_PATH') || define('YII_APP_BASE_PATH', __DIR__ . '/../../');
|
2019-02-21 01:28:52 +05:30
|
|
|
|
|
|
|
require_once YII_APP_BASE_PATH . '/vendor/autoload.php';
|
|
|
|
require_once YII_APP_BASE_PATH . '/vendor/yiisoft/yii2/Yii.php';
|
|
|
|
require_once YII_APP_BASE_PATH . '/common/config/bootstrap.php';
|
|
|
|
require_once __DIR__ . '/../config/bootstrap.php';
|