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
v1.0.1
2026-08-10 14:32 UTC
Requires
- php: >=7.4
- guzzlehttp/guzzle: ^7.0
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);