| 1234567891011121314151617181920212223242526272829 |
- <?php
- return [
- 'configs' => [
- ],
- // bean扫描目录
- 'beanScan' => [
- 'ImiApp\ApiServer\Controller',
- 'ImiApp\Model',
- ],
- 'beans' => [
- 'HttpDispatcher' => [
- 'middlewares' => [
- \Imi\Server\Http\Middleware\RouteMiddleware::class,
- ],
- ],
- 'HtmlView' => [
- 'templatePath' => dirname(__DIR__) . '/template/',
- // 支持的模版文件扩展名,优先级按先后顺序
- 'fileSuffixs' => [
- 'tpl',
- 'html',
- 'php'
- ],
- ]
- ],
- 'controller' => [
- 'singleton' => true,
- ],
- ];
|