config.php 486 B

12345678910111213141516171819
  1. <?php
  2. return [
  3. 'configs' => [
  4. ],
  5. 'beans' => [
  6. 'HttpDispatcher' => [
  7. 'middleware' => false,
  8. ],
  9. 'HtmlView' => [
  10. 'templatePath' => dirname(__DIR__) . '/template/',
  11. // 支持的模版文件扩展名,优先级按先后顺序
  12. 'fileSuffixs' => [
  13. 'tpl',
  14. 'html',
  15. 'php'
  16. ],
  17. ]
  18. ],
  19. ];