1、模板引擎
https://www.workerman.net/doc/webman#/view
用 jenssegers/blade
2、数据库迁移
robmorgan/phinx
https://tsy12321.gitbooks.io/phinx-doc/content/commands.html
# 创建表
vendor/bin/phinx create CreateWechatUserTable
# 修改表
vendor/bin/phinx create AddNameToWechatUserTable
# 执行数据迁移
vendor/bin/phinx migrate
# 回滚
vendor/bin/phinx rollback