mirror of
https://github.com/rico-vz/HeimerdingerLoL.git
synced 2025-12-06 10:10:48 +01:00
- Added hCaptcha validation to the contact form. - Integrated hCaptcha configuration in the application. - Implemented Discord alerts for new contact submissions with detailed content.
11 lines
217 B
PHP
11 lines
217 B
PHP
<?php
|
|
|
|
return [
|
|
'secret' => env('HCAPTCHA_SECRET'),
|
|
'sitekey' => env('HCAPTCHA_SITEKEY'),
|
|
'server-get-config' => false,
|
|
'options' => [
|
|
'timeout' => 30,
|
|
],
|
|
];
|