2013-05-24 22:14:49 +08:00
|
|
|
<?php
|
2013-12-02 19:23:32 +08:00
|
|
|
|
|
|
|
Yii::setAlias('tests', realpath(__DIR__ . '/../tests'));
|
|
|
|
|
2013-09-16 06:41:19 +08:00
|
|
|
$params = require(__DIR__ . '/params.php');
|
2013-12-02 19:23:32 +08:00
|
|
|
|
2013-10-18 13:30:41 +08:00
|
|
|
$config = [
|
2013-11-09 10:35:51 +08:00
|
|
|
'id' => 'basic',
|
2013-05-24 22:14:49 +08:00
|
|
|
'basePath' => dirname(__DIR__),
|
2013-11-03 04:04:38 +08:00
|
|
|
'extensions' => require(__DIR__ . '/../vendor/yiisoft/extensions.php'),
|
2013-10-18 13:30:41 +08:00
|
|
|
'components' => [
|
|
|
|
'cache' => [
|
2013-05-24 22:14:49 +08:00
|
|
|
'class' => 'yii\caching\FileCache',
|
2013-10-18 13:30:41 +08:00
|
|
|
],
|
|
|
|
'user' => [
|
2013-05-24 22:14:49 +08:00
|
|
|
'identityClass' => 'app\models\User',
|
2013-10-18 13:30:41 +08:00
|
|
|
],
|
|
|
|
'errorHandler' => [
|
2013-08-10 19:33:24 +08:00
|
|
|
'errorAction' => 'site/error',
|
2013-10-18 13:30:41 +08:00
|
|
|
],
|
2013-11-08 12:01:13 +08:00
|
|
|
'mail' => [
|
|
|
|
'class' => 'yii\swiftmailer\Mailer',
|
|
|
|
],
|
2013-10-18 13:30:41 +08:00
|
|
|
'log' => [
|
2013-07-11 00:57:36 +08:00
|
|
|
'traceLevel' => YII_DEBUG ? 3 : 0,
|
2013-10-18 13:30:41 +08:00
|
|
|
'targets' => [
|
|
|
|
[
|
2013-07-03 10:09:25 +08:00
|
|
|
'class' => 'yii\log\FileTarget',
|
2013-10-18 13:30:41 +08:00
|
|
|
'levels' => ['error', 'warning'],
|
|
|
|
],
|
|
|
|
],
|
|
|
|
],
|
2013-12-02 19:23:32 +08:00
|
|
|
'db' => [
|
|
|
|
'class' => 'yii\db\Connection',
|
|
|
|
'dsn' => 'mysql:host=localhost;dbname=yii2basic',
|
|
|
|
'username' => 'root',
|
|
|
|
'password' => '',
|
|
|
|
'charset' => 'utf8',
|
|
|
|
],
|
2013-10-18 13:30:41 +08:00
|
|
|
],
|
2013-09-16 06:41:19 +08:00
|
|
|
'params' => $params,
|
2013-10-18 13:30:41 +08:00
|
|
|
];
|
2013-08-10 19:56:40 +08:00
|
|
|
|
|
|
|
if (YII_ENV_DEV) {
|
|
|
|
$config['preload'][] = 'debug';
|
|
|
|
$config['modules']['debug'] = 'yii\debug\Module';
|
|
|
|
$config['modules']['gii'] = 'yii\gii\Module';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $config;
|