20 lines
553 B
PHP
20 lines
553 B
PHP
<?php
|
|
|
|
return [
|
|
'doctrine' => [
|
|
'driver' => [
|
|
'orm_default' => [
|
|
'class' => \Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain::class,
|
|
'drivers' => [
|
|
'App\Entity' => 'my_entity',
|
|
],
|
|
],
|
|
'my_entity' => [
|
|
'class' => \Doctrine\ORM\Mapping\Driver\AnnotationDriver::class,
|
|
'cache' => 'array',
|
|
'paths' => __DIR__ . '/../../src/App/Entity',
|
|
],
|
|
],
|
|
],
|
|
];
|