Skip to content
Snippets Groups Projects
Select Git revision
  • ee220c864b28bec835d78bb5957d57275d05611a
  • master default protected
  • pcre
3 results

test_postfix_canonical.aug

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    local.php.dist 1.01 KiB
    <?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' => [
                    'basic' => [
                        'adapter' => \ZF\MvcAuth\Authentication\HttpAdapter::class,
                        'options' => [
                            'accept_schemes' => [
                                0 => 'basic',
                            ],
                            'realm' => 'api',
                            'htpasswd' => __DIR__ . '/../users.htpasswd',
                        ],
                    ],
                ],
            ],
        ],
    ];