console.php 544 B

12345678910111213141516171819202122232425
  1. <?php
  2. $params = require(__DIR__ . '/params.php');
  3. return array(
  4. 'id' => 'bootstrap-console',
  5. 'basePath' => dirname(__DIR__),
  6. 'preload' => array('log'),
  7. 'controllerPath' => dirname(__DIR__) . '/commands',
  8. 'controllerNamespace' => 'app\commands',
  9. 'modules' => array(
  10. ),
  11. 'components' => array(
  12. 'cache' => array(
  13. 'class' => 'yii\caching\FileCache',
  14. ),
  15. 'log' => array(
  16. 'targets' => array(
  17. array(
  18. 'class' => 'yii\log\FileTarget',
  19. 'levels' => array('error', 'warning'),
  20. ),
  21. ),
  22. ),
  23. ),
  24. 'params' => $params,
  25. );