Skip to content
Snippets Groups Projects
Select Git revision
  • c9f7265ef42b15c85a47b787147ffaed8eb465b3
  • master default protected
  • release-1.3.10
  • popover-bootstrap-3.4
  • zf-3.x
  • 3.0.9
  • 3.0.8
  • 1.3.10
  • 3.0.7
  • 3.0.6
  • 3.0.5
  • 3.0.4
  • 3.0.3
  • 3.0.2
  • 3.0.1
  • 3.0.0
  • 1.3.9
  • 1.3.8
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
25 results

configuration.md

Blame
  • Forked from lib / unicaen / auth
    Source project has a limited visibility.
    Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    local.php.dist 1.11 KiB
    <?php
    return [
        /**
         * Eventuelles instructions SQL à exécuter avant la mise à jour d'une table de service.
         */
        'services_pre_sql' => [
            //'individu' => "begin DBMS_MVIEW.REFRESH('SYGAL_MV_EMAIL', 'C'); end;",
        ],
        /**
         * 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',
                        ],
                    ],
                ],
            ],
        ],
    ];