You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
266B

  1. <?php
  2. return [
  3. 'dsn' => 'sqlite:' . __DIR__ . '/../database/app.sqlite',
  4. 'username' => null,
  5. 'password' => null,
  6. 'options' => [
  7. PDO::ATTR_ERRMODE => PDO::ERRMODE_EXCEPTION,
  8. PDO::ATTR_DEFAULT_FETCH_MODE => PDO::FETCH_ASSOC,
  9. ],
  10. ];

Powered by TurnKey Linux.