Commit 63ffd8e6 authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

suppression fichier de config .dist

parent 51789077
Loading
Loading
Loading
Loading
+0 −34
Original line number Diff line number Diff line
<?php

return [
    'doctrine' => [
        'connection' => [
            'orm_default' => [
                'driverClass' => 'Doctrine\DBAL\Driver\OCI8\Driver',
                'params' => [
                    'host'     => 'XXXXX',
                    'dbname'   => 'XXXXX',
                    'port'     => 'XXXXX',
                    'user'     => 'XXXXX',
                    'password' => 'XXXXX',
                    'charset'  => 'AL32UTF8',
                ],
            ],
        ],
        'driver'     => [
            'orm_default_xml_driver' => [
                'class' => 'Doctrine\ORM\Mapping\Driver\XmlDriver',
                'cache' => 'array',
                'paths' => [
                    __DIR__ . '/../../module/ImportData/src/V1/Entity/Db/Mapping',
                ],
            ],
            'orm_default' => [
                'class'   => 'Doctrine\ORM\Mapping\Driver\DriverChain',
                'drivers' => [
                    'ImportData\V1\Entity\Db' => 'orm_default_xml_driver',
                ],
            ],
        ],
    ],
];