| 123456789101112131415 |
- <?php
- // ensure we get report on all possible php errors
- error_reporting(-1);
- define('YII_ENABLE_ERROR_HANDLER', false);
- define('YII_DEBUG', true);
- $_SERVER['SCRIPT_NAME'] = '/' . __DIR__;
- $_SERVER['SCRIPT_FILENAME'] = __FILE__;
- $composerAutoload = __DIR__ . '/../vendor/autoload.php';
- if (!is_file($composerAutoload))
- {
- die("Composer autoloader not found!");
- }
- require_once($composerAutoload);
- require_once(__DIR__ . '/../vendor/yiisoft/yii2/Yii.php');
- Yii::setAlias('@mikemadisonweb/rabbitmq/tests', __DIR__);
|