PHP Singapore NRIC (National Registration Identity Card) or FIN (Foreign Identification Number) validator package
composer require makowskid/sg-nric
use Makowskid\SgNric\SgNric;
$validator = new SgNric();
if ($validator->isNricValid($theNric)) {
// NRIC is valid
// Your code here...
}
// OR
if ($validator->isFinValid($theFin)) {
// FIN is valid
// Your code here...
}
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.