robertpatan/php-cnp-validator

Romania Personal Identification Number(in Romanian CNP) validator

dev-master 2020-05-25 19:01 UTC

This package is auto-updated.

Last update: 2025-06-26 06:11:57 UTC


README

Install

composer require robertpatan/php-cnp-validator

Usage

require_once __DIR__ . '/vendor/autoload.php';
//example 1
\Src\CnpValidator::validate('3900527016311');

//example 2
$validator = new \Src\CnpValidator('3900527016311');
$validator->isValid();

Tests

run tests: ./vendor/bin/phpunit --bootstrap ./vendor/autoload.php