如何在Symfony 2.3中禁用一个资产过滤器?

i'm use a bundle with a {% stylesheets filters="?yui_css" %} twig tag in template. How can i disable only this filter globally in my application for all of enveroments?

Of course, I could to rewrite a twig template in this bundle, but it's installed as a vendor by composer, and i don't want to modify the vendor bundle.

Symfony 2.3 is used.

I need something like this in config.yml:

assetic:
    filters:
        yui_css:
            disabled: true