mirror of
https://github.com/yiisoft/yii2.git
synced 2025-11-21 17:20:57 +08:00
20 lines
342 B
PHP
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',
|
|
],
|
|
],
|
|
];
|