PHP Classes

File: tests/yii

Recommend this page to a friend!
  Classes of Insolita   Yii2 Metacrumbs   tests/yii   Download  
File: tests/yii
Role: Example script
Content type: text/plain
Description: Example script
Class: Yii2 Metacrumbs
Generate breadcrumbs for navigating between pages
Author: By
Last change:
Date: 1 year ago
Size: 620 bytes
 

Contents

Class file image Download
#!/usr/bin/env php
<?php
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__));
require(
YII_APP_BASE_PATH . '/vendor/autoload.php');
$dotenv = new \Dotenv\Dotenv(__DIR__);
$dotenv->load();
require(
YII_APP_BASE_PATH . '/vendor/yiisoft/yii2/Yii.php');
Yii::setAlias('@tests', __DIR__);
$config = \yii\helpers\ArrayHelper::merge(
    require(
__DIR__ . '/config/base.php'),
    require(
__DIR__ . '/config/console.php')
);
$app = new \yii\console\Application($config);
$code = $app->run();
exit(
$code);