torchlighttechnology/xverify-client-api

There is no license information available for the latest version (v2.0.1) of this package.

Xverify PHP Client

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

This package is not auto-updated.

Last update: 2024-04-28 03:25:25 UTC


README

Install with composer

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

Usage in your project

use torchlighttechnology\XverifyClientAPI;

$client = new XverifyClientAPI;

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