我正在尝试将这个包添加到我的项目中:https://docs.coreshop.org/2.1.0/Bundles/Store_Bundle.html
我可以添加这个包并在内核中激活它,但是当我尝试"php bin/console update:schema:update --force“部分时,我得到了一个错误:
There are no commands defined in the "doctrine:schema" namespace.
Did you mean one of these?
doctrine
doctrine:cache
doctrine:database
doctrine:generate
doctrine:query我试图安装各种理论包,我认为它会包括它,但似乎没有什么不同。我在Symfony 4.3上运行。
发布于 2019-11-17 18:37:31
Pimcore目前没有提供所需的软件包。因此,您将不得不手动要求它们:
composer require symfony/maker-bundle symfony/orm-pack您还必须将以下内容添加到config.yml中
doctrine:
orm:
default_entity_manager: defaulthttps://stackoverflow.com/questions/58661793
复制相似问题