Files
SmartHomePHP/environments/dev/config/main-local.php
Alex Solomaha fe6b8ffff3 basic app
2016-08-12 17:48:42 +03:00

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',
]
]
],
],
],
];