Blame view

tests/codeception/bin/_bootstrap.php 541 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  <?php
  /**
   * Yii console bootstrap file.
   *
   * @link http://www.yiiframework.com/
   * @copyright Copyright (c) 2008 Yii Software LLC
   * @license http://www.yiiframework.com/license/
   */
  
  defined('YII_DEBUG') or define('YII_DEBUG', true);
  defined('YII_ENV') or define('YII_ENV', 'test');
  
  defined('YII_APP_BASE_PATH') or define('YII_APP_BASE_PATH', dirname(__DIR__, 3));
  
  require_once(YII_APP_BASE_PATH . '/vendor/autoload.php');
  require_once(YII_APP_BASE_PATH . '/vendor/yiisoft/yii2/Yii.php');
  
  Yii::setAlias('@tests', dirname(__DIR__, 2));