<?php
declare(strict_types=1);

// Copy this file to config.local.php (gitignored) and fill in real values.
return [
  // Generate once: php -r "echo bin2hex(random_bytes(32));"
  'union_enc_key' => 'CHANGE_ME_64_CHAR_HEX',

  'db' => [
    'host' => '127.0.0.1',
    'name' => 'grfd-mobile',
    'user' => 'grfd-mobile',
    'pass' => 'CHANGE_ME',
    'charset' => 'utf8mb4',
  ],
];
