generated from flo/template-backend
15 lines
379 B
PHP
15 lines
379 B
PHP
<?php
|
|
|
|
use Doctrine\DBAL\Driver\PDO\MySQL\Driver;
|
|
use Doctrine\ORM\Mapping\Driver\AnnotationDriver;
|
|
use Doctrine\Persistence\Mapping\Driver\MappingDriverChain;
|
|
use Ramsey\Uuid\Doctrine\UuidBinaryOrderedTimeType;
|
|
|
|
return [
|
|
'doctrine' => [
|
|
'types' => [
|
|
UuidBinaryOrderedTimeType::NAME => UuidBinaryOrderedTimeType::class,
|
|
],
|
|
],
|
|
];
|