xverify/xverify-client-api

本包最新版本(v2.0.1)没有可用的许可信息。

Xverify PHP 客户端

v2.0.1 2018-05-30 16:29 UTC

This package is not auto-updated.

Last update: 2024-09-14 18:36:46 UTC


README

使用 composer 安装

composer require xverify/xverify-client-api:"~1.0"

在项目中使用

use torchlighttechnology\XverifyClientAPI;

$client = new XverifyClientAPI;

$data = array();
$email = 'test@test.com';
$data['email'] = $email;
$client->verify('email', $data);