mirror of
https://github.com/yiisoft/yii2.git
synced 2025-08-20 10:27:18 +08:00
11 lines
228 B
PHP
11 lines
228 B
PHP
<?php
|
|
|
|
$config = require(__DIR__.'/../yii_bootstrap.php');
|
|
|
|
$config = yii\helpers\ArrayHelper::merge(
|
|
$config,
|
|
require(__DIR__ . '/../../config/codeception/functional.php')
|
|
);
|
|
|
|
$application = new yii\web\Application($config);
|