Files
yii2/apps/advanced/environments/dev/common/config/main-local.php
Alexander Kochetov e1459d4037 Yet one optimization
2014-01-22 18:39:53 +04:00

20 lines
342 B
PHP

<?php
return [
'preload' => [
//'debug',
],
'modules' => [
// 'debug' => 'yii\debug\Module',
// 'gii' => 'yii\gii\Module',
],
'components' => [
'db' => [
'class' => 'yii\db\Connection',
'dsn' => 'mysql:host=localhost;dbname=yii2advanced',
'username' => 'root',
'password' => '',
'charset' => 'utf8',
],
],
];