PHP Classes

File: config/recaptcha.php

Recommend this page to a friend!
  Packages of Nemeth Zoltan   Cards API PHP   config/recaptcha.php   Download  
File: config/recaptcha.php
Role: Auxiliary script
Content type: text/plain
Description: Configuration script
Class: Cards API PHP
Manage trading cards, decks, games, and creators
Author: By
Last change:
Date: 2 months ago
Size: 351 bytes
 

Contents

Class file image Download
<?php
/**
 * Webtech-solutions 2025, All rights reserved.
 */

return [
   
'site_key' => env('RECAPTCHA_SITE_KEY'),
   
'secret_key' => env('RECAPTCHA_SECRET_KEY'),
   
'verify_url' => 'https://recaptchaenterprise.googleapis.com/v1/projects/cards-api-php-1738854009542/assessments',
   
'score_threshold' => env('RECAPTCHA_SCORE_THRESHOLD', 0.5),
];