Blame view

common/config/main.php 454 Bytes
559be889   Alexander Karnovsky   Init test-9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  <?php
  return [
      'vendorPath' => dirname(dirname(__DIR__)) . '/vendor',
      'components' => [
          'cache' => [
              'class' => 'yii\caching\FileCache',
          ],
          'urlManager' => [
  	        'enablePrettyUrl' => true,
  	        'showScriptName' => false,
  	        'rules' => [
  		        'module/<module:\w+>/<controller:\w+>/<action:\w+>' => '<module>/<controller>/<action>',
  	        ]
          ],
      ],
      'language' => 'ru-RU',
  ];