如何在Symfony 4中找到app / AppKernel.php?

时间:2018-07-12 16:22:13

标签: php symfony kernel bundles

我想根据此教程在Symfony 4的AppKernel类中注册捆绑软件:

https://symfony.com/doc/3.3/bundles.html

但是我找不到文件夹“ app”,也找不到文件AppKernel.php,因此找不到类AppKernel。是我在Symfony安装过程中犯了一个错误,还是我需要自己创建一个应用程序文件夹?

2 个答案:

答案 0 :(得分:5)

Symfony 4的结构与Symfony 3不同

如果要在应用程序中启用捆绑包,则必须更改 config / bundles.php 文件

类似的东西

    // config/bundles.php
    return [
        // 'all' means that the bundle is enabled for any Symfony environment
        Symfony\Bundle\FrameworkBundle\FrameworkBundle::class => ['all' => true],
        Symfony\Bundle\SecurityBundle\SecurityBundle::class => ['all' => true],
        Symfony\Bundle\TwigBundle\TwigBundle::class => ['all' => true],
.
.
.

    ];

有关更多信息,请参见此tutorial

答案 1 :(得分:0)

现在,从4.X,App-> src