我不知道如何整合beberlei教义扩展:
https://github.com/beberlei/DoctrineExtensions
在带有教义模块的Zend Framework 2中。
我用 Composer 安装了它:
我尝试从应用程序模块我的module.config.php中:
'doctrine' => array(
'driver' => array(
__NAMESPACE__ .'_driver' => array(
'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
'cache' => 'array',
'paths' => array(__DIR__ . '/../src/'.__NAMESPACE__.'/Entity')
),
'orm_default' => array(
'drivers' => array(
__NAMESPACE__.'\Entity' => __NAMESPACE__. '_driver'
)
)
),
'configuration' => array(
'orm_default' => array(
'string_functions' => array(
'GroupConcat' => '/vendor/beberlei/DoctrineExtensions\Query\MsySql\GroupConcat'
)
)
)
),
但是抛出了这个异常:
最佳答案
配置不需要引用/vendor/beberlei
文件夹,因为它是由自动加载器处理的。
配置可能看起来像这样:
'doctrine' => array(
'driver' => array(
__NAMESPACE__ .'_driver' => array(
'class' => 'Doctrine\ORM\Mapping\Driver\AnnotationDriver',
'cache' => 'array',
'paths' => array(__DIR__ . '/../src/'.__NAMESPACE__.'/Entity')
),
'orm_default' => array(
'drivers' => array(
__NAMESPACE__.'\Entity' => __NAMESPACE__. '_driver'
)
)
),
'configuration' => array(
'orm_default' => array(
'string_functions' => array(
'GroupConcat' => 'DoctrineExtensions\Query\Mysql\GroupConcat'
)
)
)
),
关于php - 如何在zend Framework 2中实现beberlei学说扩展,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23117061/