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

Population and Citizenship Affairs services for Turkey

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

This package is not auto-updated.

Last update: 2024-05-18 19:32:31 UTC


README

<?php

require 'vendor/autoload.php';

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

$verification = $turkishIdentityNumber->verify();

var_dump($verification);

die();