config.php 763 B

1234567891011121314151617181920212223242526272829
  1. <?php
  2. return [
  3. 'configs' => [
  4. ],
  5. // bean扫描目录
  6. 'beanScan' => [
  7. 'ImiApp\ApiServer\Controller',
  8. 'ImiApp\Model',
  9. ],
  10. 'beans' => [
  11. 'HttpDispatcher' => [
  12. 'middlewares' => [
  13. \Imi\Server\Http\Middleware\RouteMiddleware::class,
  14. ],
  15. ],
  16. 'HtmlView' => [
  17. 'templatePath' => dirname(__DIR__) . '/template/',
  18. // 支持的模版文件扩展名,优先级按先后顺序
  19. 'fileSuffixs' => [
  20. 'tpl',
  21. 'html',
  22. 'php'
  23. ],
  24. ]
  25. ],
  26. 'controller' => [
  27. 'singleton' => true,
  28. ],
  29. ];