Skip to content
Snippets Groups Projects
Select Git revision
  • 7e64e5969937e7a86f9ef0a6624e3b995b625ff9
  • master default protected
  • release_3.0.0
  • test
  • feature_pre_sql
  • develop
  • 3.0.1
  • 3.0.0
  • 2.3.0
  • 2.2.0
  • 2.1.0
  • 2.0.0
  • 1.3.7
  • 1.3.6
  • 1.3.5
  • 1.3.4
  • 1.3.3
  • 1.3.2
  • 1.3.1
  • 1.3.0
  • 1.2.6
  • 1.2.5
  • 1.2.4
  • 1.2.3
  • 1.2.2
  • 1.2.1
26 results

local.php.dist

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