Skip to content
Snippets Groups Projects
Select Git revision
  • b23ba173caa9fc2b239f211647d9feb694802b91
  • master default protected
  • detached4
  • detached3
  • detached2
  • bsv-next
  • detached
  • php82
  • 6.x
  • 6.4.0
  • 6.3.3
  • 6.3.2
  • 6.3.1
  • 6.3.0
  • 6.2.7
  • 6.2.6
  • 6.2.5
  • 6.2.4
  • 6.2.3
  • 6.2.2
  • 6.2.1
  • 6.2.0
  • 6.1.3
  • 6.1.2
  • 6.1.1
  • 6.1.0
  • 6.0.0
27 results

main.js

Blame
  • 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',
                        ],
                    ],
                ],
            ],
        ],
    ];