我无法安装SonataBluePrintBundle,我用过:
$ git submodule add https://github.com/sonata-project/BluePrintBundle.git
(使用不同的文件目的地:例如:src/Bundle/BluePrintBundle
)但是当我尝试删除缓存(或执行其他操作)时,我收到此错误:
PHP Fatal Error: src/Bundle/BluePrintBundle/SonataBluePrintBundle not found in Appkernel.php
但这里已添加的是AppKernel文件:
public function registerBundles()
{
$bundles = array(
//....
new Knp\Bundle\MenuBundle\KnpMenuBundle(),
new Bundle\BluePrintBundle\SonataBluePrintBundle(),
);
//...
我尝试了多个在AppKernel中更改目录和/或路径,总是一样的错误。
答案 0 :(得分:0)
根据SonataBluePrint repository,我认为您的git网址很糟糕,网址为https://github.com/sonata-project/SonataBluePrintBundle.git
尝试:
git submodule add https://github.com/sonata-project/SonataBluePrintBundle.git
而不是
git submodule add https://github.com/sonata-project/BluePrintBundle.git