24 lines
537 B
PHP
Executable File
24 lines
537 B
PHP
Executable File
<?php
|
|
|
|
namespace Application;
|
|
|
|
use Ainias\Core\Connections\MyConnection;
|
|
use Doctrine\ORM\Mapping\Driver\AnnotationDriver;
|
|
|
|
return array(
|
|
'doctrine' => array(
|
|
'driver' => array(
|
|
'orm_default' => array(
|
|
'drivers' => array(
|
|
__NAMESPACE__.'\Model' => 'entities_default',
|
|
),
|
|
),
|
|
'entities_default' => array(
|
|
'paths' => array(
|
|
__DIR__ . '/../src/Model',
|
|
)
|
|
)
|
|
),
|
|
),
|
|
);
|