Skip to content
Snippets Groups Projects
Commit d07caeca authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

Modif pour test déploiement avec git

parent b41bc403
No related branches found
No related tags found
No related merge requests found
About this directory:
=====================
By default, this application is configured to load all configs in
`./config/autoload/{,*.}{global,local}.php`. Doing this provides a
location for a developer to drop in configuration override files provided by
modules, as well as cleanly provide individual, application-wide config files
for things like database connections, etc.
<?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',
],
],
],
],
];
......@@ -5,7 +5,7 @@ return [
],
'db' => [
'adapters' => [
// 'dummy' => [],
'dummy' => [],
],
],
];
<?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',
],
],
],
],
'zf-mvc-auth' => [
'authentication' => [
'adapters' => [
......
<?php
return [
'doctrine' => [
'driver' => [
......@@ -10,7 +11,7 @@ return [
],
],
'orm_default' => [
'class' => \Doctrine\ORM\Mapping\Driver\DriverChain::class,
'class' => \Doctrine\Common\Persistence\Mapping\Driver\MappingDriverChain::class,
'drivers' => [
'ImportData\\V1\\Entity\\Db' => 'orm_default_xml_driver',
],
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment