Symfony添加捆绑包

时间:2014-06-19 10:34:07

标签: php symfony

我试图在没有作曲家的情况下手动添加一个包但没有任何成功。

错误

  

自动加载器预期的类   "目的地\内容\ ExcelBundle \ LiuggioExcelBundle"待定义   file" / src / \ Destination \ Content \ ExcelBundle \ LiuggioExcelBundle.php"

我的文件夹结构如下所示。

src\
   Destination\
      Content\
         ExcelBundle\LiuggioExcelBundle.php

我的AppKernel

$bundles = array(
            ....
            new Destination\Content\ExcelBundle\LiuggioExcelBundle(),
            ....
        );

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

根据github:https://github.com/liuggio/ExcelBundle/blob/master/LiuggioExcelBundle.php#L3,名称空间为Liuggio\ExcelBundle,但应为Destination\Content\ExcelBundle

您是否编辑了此命名空间?