_bootstrap.php 350 B

123456789
  1. <?php
  2. defined('YII_DEBUG') or define('YII_DEBUG', true);
  3. defined('YII_ENV') or define('YII_ENV', 'test');
  4. defined('YII_APP_BASE_PATH') or define('YII_APP_BASE_PATH', __DIR__.'/../../');
  5. require_once __DIR__ . '/../../vendor/autoload.php';
  6. require_once __DIR__ . '/../../vendor/yiisoft/yii2/Yii.php';
  7. require __DIR__ . '/../config/bootstrap.php';