| 12345678910111213141516171819202122232425262728293031323334353637 |
- <?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::className(),
- //'allowedIPs' => ['127.0.0.1'],
- ];
- $config['bootstrap'][] = 'gii';
- $config['modules']['gii'] = [
- 'class' => yii\gii\Module::className(),
- //'allowedIPs' => ['127.0.0.1'],
- 'generators' => [
- 'crud' => [
- 'class' => yii\gii\generators\crud\Generator::className(),
- 'templates' => [
- 'default' => '@backend/components/gii/crud/default',
- 'yii' => '@vendor/yiisoft/yii2-gii/generators/crud/default',
- ]
- ]
- ],
- ];
- }
- return $config;
|