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
