Symfony3 + 资产:ParameterNotFoundException

Symfony3 + Assetic : ParameterNotFoundException

我正在开发 Symfony 3.4 应用程序。没有安装 Assetic bundle,所以我做了 :

$ composer require symfony/assetic-bundle

并将其添加到 appKernel.php :

    new Symfony\Bundle\AsseticBundle\AsseticBundle(),

效果很好。然后,在我的 app/config/config.yml 中,我添加了:

# app/config/config.yml
assetic:
    debug:          '%kernel.debug%'
    use_controller: '%kernel.debug%'
    filters:
        cssrewrite: ~

# ...

现在我的前端不再可用,这是 app_dev.php 显示的错误:

ParameterNotFoundException You have requested a non-existent parameter "templating.engines".

即使我从 config.yml 中删除 Assetic 配置,错误仍然存​​在。我一直在搜索我所有的 *.yml 文件,我没有找到任何 属性 "templating.engines" ....有什么想法吗?

尝试在 config.yml

中添加以下内容
framework:
     ...
     templating:
            engines: ['twig']