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

Population and Citizenship Affairs services for Turkey

Installs: 22

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/suhaboncukcu/nvi

v1.0.2 2022-07-17 18:56 UTC

This package is not auto-updated.

Last update: 2025-10-05 01:47:31 UTC


README

<?php

require 'vendor/autoload.php';

$turkishIdentityNumber = new \NVI\TurkishIdentityNumber(
  '11111111111',
  'Name',
  'Surname',
  '1989'
);

$verification = $turkishIdentityNumber->verify();

var_dump($verification);

die();