enzonix/captcha
最新稳定版本:v1.1
Composer 安装命令:
composer require enzonix/captcha
包简介
Enzonix captcha verification client
README 文档
README
A small, lightweight PHP client for verifying captcha tokens against Enzonix's verification endpoint (https://verify.enzonix.com).
Installation
Require the package with Composer:
composer require enzonix/captcha
Usage
use Enzonix\Captcha\CaptchaClient; $client = new CaptchaClient(getenv('ENZONIX_SECRET')); $response = $client->verify($_POST['captcha_token'] ?? ''); if ($response->isSuccess()) { // accepted $score = $response->getScore(); } else { $errors = $response->getErrors(); }
统计信息
- 总下载量: 29
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 1
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2026-01-30