console.php 566 B

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