Files
yii2/apps/bootstrap/index.php
2013-05-05 18:35:49 -04:00

10 lines
236 B
PHP

<?php
defined('YII_DEBUG') or define('YII_DEBUG', true);
require(__DIR__ . '/../../framework/yii.php');
$config = require(__DIR__ . '/protected/config/main.php');
$application = new yii\web\Application($config);
$application->run();