Blame view

tests/unit/_bootstrap.php 310 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
  <?php
  
  defined('YII_DEBUG') or define('YII_DEBUG', true);
  defined('YII_ENV') or define('YII_ENV', 'dev');
  require(__DIR__ . '/../../vendor/autoload.php');
  require(__DIR__ . '/../../vendor/yiisoft/yii2/Yii.php');
  Yii::setAlias('@tests', __DIR__);
  Yii::setAlias('@data', __DIR__ . DIRECTORY_SEPARATOR . '_data');