2016-01-02 19:13:18 +05:30
|
|
|
<?php
|
|
|
|
|
|
|
|
$config = [
|
|
|
|
'components' => [
|
|
|
|
'request' => [
|
|
|
|
// !!! insert a secret key in the following (if it is empty) - this is required by cookie validation
|
|
|
|
'cookieValidationKey' => '',
|
|
|
|
],
|
2016-02-14 23:20:10 +05:30
|
|
|
'reCaptcha' => [
|
|
|
|
'secret' => '',
|
|
|
|
],
|
2016-01-02 19:13:18 +05:30
|
|
|
],
|
|
|
|
];
|
|
|
|
|
|
|
|
if (!YII_ENV_TEST) {
|
|
|
|
// configuration adjustments for 'dev' environment
|
|
|
|
$config['bootstrap'][] = 'debug';
|
|
|
|
$config['modules']['debug'] = 'yii\debug\Module';
|
|
|
|
|
|
|
|
$config['bootstrap'][] = 'gii';
|
|
|
|
$config['modules']['gii'] = 'yii\gii\Module';
|
|
|
|
}
|
|
|
|
|
|
|
|
return $config;
|