Select Git revision
module.config.php
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
secret.local.php.dist 913 B
<?php
return [
/**
* Connexion à la base de données.
*/
'doctrine' => [
'connection' => [
'orm_default' => [
'driverClass' => 'Doctrine\DBAL\Driver\OCI8\Driver',
'params' => [
'host' => 'XXXXX',
'dbname' => 'XXXXX',
'port' => 'XXXXX',
'user' => 'XXXXX',
'password' => 'XXXXX',
'charset' => 'AL32UTF8',
],
],
],
],
/**
* Config du mode d'authentification.
*/
'zf-mvc-auth' => [
'authentication' => [
'adapters' => [
'basic' => [
'options' => [
'htpasswd' => __DIR__ . '/../users.htpasswd',
],
],
],
],
],
];