2013-05-24 10:14:49 -04:00
|
|
|
<?php
|
2013-06-22 20:26:22 -04:00
|
|
|
|
2013-08-10 07:56:40 -04:00
|
|
|
$config = array(
|
2013-05-24 10:14:49 -04:00
|
|
|
'id' => 'bootstrap',
|
|
|
|
'basePath' => dirname(__DIR__),
|
|
|
|
'components' => array(
|
|
|
|
'cache' => array(
|
|
|
|
'class' => 'yii\caching\FileCache',
|
|
|
|
),
|
|
|
|
'user' => array(
|
|
|
|
'identityClass' => 'app\models\User',
|
|
|
|
),
|
2013-08-10 07:33:24 -04:00
|
|
|
'errorHandler' => array(
|
|
|
|
'errorAction' => 'site/error',
|
|
|
|
),
|
2013-05-24 10:14:49 -04:00
|
|
|
'log' => array(
|
2013-07-10 12:57:36 -04:00
|
|
|
'traceLevel' => YII_DEBUG ? 3 : 0,
|
2013-05-24 10:14:49 -04:00
|
|
|
'targets' => array(
|
|
|
|
array(
|
2013-07-02 22:09:25 -04:00
|
|
|
'class' => 'yii\log\FileTarget',
|
2013-05-24 10:14:49 -04:00
|
|
|
'levels' => array('error', 'warning'),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
2013-06-22 20:26:22 -04:00
|
|
|
'params' => require(__DIR__ . '/params.php'),
|
2013-05-24 10:14:49 -04:00
|
|
|
);
|
2013-08-10 07:56:40 -04:00
|
|
|
|
|
|
|
if (YII_ENV_DEV) {
|
|
|
|
$config['preload'][] = 'debug';
|
|
|
|
$config['modules']['debug'] = 'yii\debug\Module';
|
|
|
|
$config['modules']['gii'] = 'yii\gii\Module';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $config;
|