web.php 547 B

123456789101112131415161718192021222324252627
  1. <?php
  2. return array(
  3. 'id' => 'bootstrap',
  4. 'basePath' => dirname(__DIR__),
  5. 'components' => array(
  6. 'cache' => array(
  7. 'class' => 'yii\caching\FileCache',
  8. ),
  9. 'user' => array(
  10. 'class' => 'yii\web\User',
  11. 'identityClass' => 'app\models\User',
  12. ),
  13. 'assetManager' => array(
  14. 'bundles' => require(__DIR__ . '/assets.php'),
  15. ),
  16. 'log' => array(
  17. 'targets' => array(
  18. array(
  19. 'class' => 'yii\log\FileTarget',
  20. 'levels' => array('error', 'warning'),
  21. ),
  22. ),
  23. ),
  24. ),
  25. 'params' => require(__DIR__ . '/params.php'),
  26. );