mirror of
https://github.com/cgsmith/yii2-user.git
synced 2026-02-04 00:02:37 -06:00
13 lines
336 B
PHP
13 lines
336 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
defined('YII_DEBUG') or define('YII_DEBUG', true);
|
|
defined('YII_ENV') or define('YII_ENV', 'test');
|
|
|
|
require_once __DIR__ . '/../vendor/autoload.php';
|
|
require_once __DIR__ . '/../vendor/yiisoft/yii2/Yii.php';
|
|
|
|
Yii::setAlias('@cgsmith/user', dirname(__DIR__) . '/src');
|
|
Yii::setAlias('@tests', __DIR__);
|