build.php 1.2 KB

12345678910111213141516171819202122232425262728
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | ThinkPHP [ WE CAN DO IT JUST THINK ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2006~2016 http://thinkphp.cn All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
  8. // +----------------------------------------------------------------------
  9. // | Author: liu21st <liu21st@gmail.com>
  10. // +----------------------------------------------------------------------
  11. return [
  12. // 生成运行时目录
  13. '__dir__' => ['runtime/cache', 'runtime/log', 'runtime/temp', 'runtime/template'],
  14. // 生成应用公共文件
  15. '__file__' => ['common.php', 'config.php', 'database.php'],
  16. // 定义demo模块的自动生成 (按照实际定义的文件名生成)
  17. 'demo' => [
  18. '__file__' => ['common.php'],
  19. '__dir__' => ['behavior', 'controller', 'model', 'view'],
  20. 'controller' => ['Index', 'Test', 'UserType'],
  21. 'model' => ['User', 'UserType'],
  22. 'view' => ['index/index'],
  23. ],
  24. // 其他更多的模块定义
  25. ];