jankado/secureid-php

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

PHP SDK for SecureID Verification API

Maintainers

Package info

github.com/Jankado-official/secureid-php

pkg:composer/jankado/secureid-php

Transparency log

Statistics

Installs: 2

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

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

This package is auto-updated.

Last update: 2026-08-10 14:32:16 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);