Blame view

common/config/main.php 557 Bytes
d1f8bd40   Alexey Boroda   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
  <?php
  use yii\helpers\ArrayHelper;
  
  //DEFINE SECTION
  require(__DIR__ . '/alias.php');
  
  return ArrayHelper::merge(
      require(dirname(__DIR__, 2) . '/thread/config/main.php'),
      [
          'components' => ArrayHelper::merge(
              require(__DIR__ . '/components.php'),
              require(__DIR__ . '/db.php')
          ),
          'modules' => require(__DIR__ . '/modules.php'),
          'params' => require __DIR__ . '/params.php',
6969963f   Anastasia   chat bot
16
17
18
19
20
21
      ],
      [
      'aliases' => [
      '@bower' => '@vendor/bower-asset',
      '@npm'   => '@vendor/npm-asset',
  ]
d1f8bd40   Alexey Boroda   first commit
22
23
      ]
  );