mirror of
https://github.com/CyanoFresh/SmartHomePHP.git
synced 2026-03-03 16:44:01 +01:00
32 lines
755 B
PHP
32 lines
755 B
PHP
<?php
|
|
|
|
return [
|
|
'bootstrap' => ['debug', 'gii'],
|
|
'components' => [
|
|
'mailer' => [
|
|
'useFileTransport' => true,
|
|
],
|
|
'request' => [
|
|
'cookieValidationKey' => '',
|
|
],
|
|
'view' => [
|
|
'enableMinify' => false,
|
|
],
|
|
],
|
|
'modules' => [
|
|
'debug' => [
|
|
'class' => 'yii\debug\Module',
|
|
],
|
|
'gii' => [
|
|
'class' => 'yii\gii\Module',
|
|
'generators' => [
|
|
'crud' => [
|
|
'class' => 'yii\gii\generators\crud\Generator',
|
|
'templates' => [
|
|
'myCrud' => '@app/giiTemplates/crud/my',
|
|
]
|
|
]
|
|
],
|
|
],
|
|
],
|
|
]; |