5

StofDoctrineExtensionsBundleでSoftDeleteableフィルターを有効にしようとすると問題が発生します。マニュアルに記載されているように構成しました:

# 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は役に立ちませんでした。何が間違っている可能性がありますか?

4

2 に答える 2

3

まず、bin/vendors updateすべてのベンダーを最新バージョンに設定するため、使用は悪い考えです。のみを使用してくださいbin/vendors install

次に、 の1.0.xブランチを使用していることを確認してください。ブランチは Symfony と互換性がないStofDoctrineExtensionsBundleためです。master2.0.x

于 2012-04-29T17:58:30.007 に答える