You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

41 lines
1.1 KiB

<?php
$config = [
'components' => [
'request' => [
// !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
'cookieValidationKey' => '',
],
],
];
if (!YII_ENV_TEST) {
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
];
$config['bootstrap'][] = 'gii';
$config['modules']['gii'] = [
'class' => 'yii\gii\Module',
'allowedIPs' => ['127.0.0.1'],
'generators' => [
'crud' => [
'class' => 'iron\generators\crud\Generator',
'templates' => [
'blobtCrud' => '@blobt/generators/crud/default',
'ironCrud' => '@iron/generators/crud/default',
]
],
'model' => [
'class' => 'iron\generators\model\Generator',
'templates' => [
'ironModel' => '@iron/generators/model/default',
]
]
],
];
}
return $config;