8 lines
253 B
PHP
8 lines
253 B
PHP
<?php
|
|
// ⚠️ This file must NEVER be committed to Git
|
|
// Add to .gitignore: config/secrets.php
|
|
return [
|
|
// Generate with: php -r "echo base64_encode(random_bytes(32));"
|
|
'encryption_key' => base64_decode($_ENV['ENCRYPTION_KEY_B64'] ?? ''),
|
|
];
|