monolith-software/cms-sandbox

Monolith CMS 沙盒

安装次数: 0

依赖关系: 0

建议者: 0

安全性: 0

星标: 0

关注者: 2

分支: 0

公开问题: 0

语言:HTML

类型:项目

dev-master / 3.4.x-dev 2019-05-23 21:27 UTC

This package is auto-updated.

Last update: 2024-08-24 08:36:05 UTC


README

@待办事项

  • Knp\Bundle\MenuBundle\Provider\BuilderAliasProvider:getBuilder - 在相同名称的类中,它会捕获第一个遇到的包中的类。
  • 可以自定义 User 实体。
  • 通过 \Symfony\Component\HttpFoundation\File\File 代替 UploadedFile 重新设计文件上传

与 Symfony 4 冲突

  • "egulias/listeners-debug-command-bundle": "*",
  • "sensio/distribution-bundle": "^5.0.19",
  • "kleegroup/google-recaptcha-bundle": "^1.0",
  • "sensio/generator-bundle": "^3.0",
  • "liuggio/excelbundle": "^2.1",
  • "phpdocumentor/reflection-docblock": "*",

Git 子模块提示

获取沙盒的最新版本

    git pull;git submodule update --init

更新来自远程仓库的子模块

    git submodule update --remote

解决 detached head 问题,将所有子模块切换到 master 分支

    git submodule foreach 'git checkout master'

删除子模块(例如 src/SmartCore/Bundle/SimpleProfilerBundle

    git submodule deinit -f src/SmartCore/Bundle/SimpleProfilerBundle
    git rm -f src/SmartCore/Bundle/SimpleProfilerBundle
    rm -rf .git/modules/src/SmartCore/Bundle/SimpleProfilerBundle