Search by

jankado / secureid-php

Netvirux

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

PHP SDK for SecureID Verification API

v1.0.1 2026-08-10 14:32 UTC

This package is auto-updated.

Last update: 2026-09-10 14:45:46 UTC


README

A pure PHP wrapper for the SecureID Verification API.

Installation

composer require jankado/secureid-php

Usage

require 'vendor/autoload.php';

use Jankado\SecureID\SecureIDClient;

$client = new SecureIDClient('your-api-key', true); // true for sandbox
$result = $client->verifyNIN('12345678901');

print_r($result);