8 lines
276 B
PHP
8 lines
276 B
PHP
<?php
|
|
// ⚠️ This file must NEVER be committed to Git
|
|
// Add to .gitignore: config/secrets.php
|
|
return [
|
|
// Generated for Musadaq Security Hardening
|
|
'encryption_key' => base64_decode($_ENV['ENCRYPTION_KEY_B64'] ?? '0AEcpckd2g6eMA3ofBXRpgrDbV6ExWkB+D1Hl5pE+I0='),
|
|
];
|