我在尝试激活 StofDoctrineExtensionsBundle 中的 SoftDeleteable 过滤器时遇到问题。我按照manual:
中的说明对其进行了配置# app/config/config.yml
doctrine:
orm:
entity_managers:
default:
filters:
softdeleteable:
class: Gedmo\SoftDeleteable\Filter\SoftDeleteableFilter
enabled: true
但这就是我得到的:
[Symfony\Component\Config\Definition\Exception\InvalidConfigurationException]
Unrecognized options "filters" under "doctrine.orm.entity_managers.default"
正在运行bin/vendors update
没有帮助。可能有什么不对?
答案 0 :(得分:3)
首先,使用bin/vendors update
是一个坏主意,因为它将所有供应商设置为最新版本。您应该只使用bin/vendors install
。
其次,请确保您使用1.0.x
的{{1}}分支,因为StofDoctrineExtensionsBundle
分支与Symfony master
不兼容。
答案 1 :(得分:-1)
你可以自己动手,这并不困难,可以避免安装另一个捆绑包:
http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/reference/filters.html