xverify/xverify-client-api

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

Xverify PHP Client

Installs: 41 828

Dependents: 0

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 4

pkg:composer/xverify/xverify-client-api

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

This package is not auto-updated.

Last update: 2025-10-12 00:30:59 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);