bootstrap.php 402 Bytes
Newer Older
1 2 3 4
<?php

declare(strict_types=1);

5 6
use Doctrine\DBAL\DriverManager;

Sergei Morozov's avatar
Sergei Morozov committed
7
(static function () : void {
8 9 10 11 12 13 14 15
    // workaround for https://bugs.php.net/bug.php?id=77120
    DriverManager::getConnection([
        'driver' => 'oci8',
        'host' => 'oracle-xe-11',
        'user' => 'ORACLE',
        'password' => 'ORACLE',
        'dbname' => 'XE',
    ])->query('ALTER USER ORACLE IDENTIFIED BY ORACLE');
16
})();