mrcnpdlk / validator
Stuff validator
Installs: 11 681
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Requires
- php: >=7.0
Requires (Dev)
- mockery/mockery: ~0
- phpunit/phpunit: ~6.3
This package is not auto-updated.
Last update: 2024-11-09 03:52:04 UTC
README
Validator
Package include a lot of validators (mainly polish IDs)
Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
Prerequisites
None
Installing
Bst way:
composer require mrcnpdlk/validator
Supported Types
Using
PESEL
$res = new \mrcnpdlk\Validator\Types\Pesel('12271402999'); var_dump($res->get()); //return parsed and cleaned string var_dump($res->getBirthDate()); //return date in format YYY-MM-DD var_dump($res->getAge()); //return int var_dump($res->getSex()); //return F/M char
NIP
$res = new \mrcnpdlk\Validator\Types\Nip('362-005-44-28'); var_dump($res->get()); //return parsed and cleaned string (3620054428) var_dump($res->getTaxOffice()); //return Tax Office name (Urząd Skarbowy Poznań-Nowe Miasto)
REGON
$res = new \mrcnpdlk\Validator\Types\Regon('331501'); var_dump($res->get()); //return parsed and cleaned string (000331501) var_dump($res->getShort()); //return short number (000331501) var_dump($res->getLong()); //return long number (00033150100000)
NRB
$oNrb = new \mrcnpdlk\Validator\Types\Nrb('13 1020 2791 2123 5389 7801 0731'); var_dump($oNrb->get()); var_dump($oNrb->getBank()); var_dump($oNrb->getBankDepartment());
returns:
string(26) "13102027912123538978010731"
string(3) "102"
string(8) "10202791"
PHONE
$oPhone = new \mrcnpdlk\Validator\Types\Phone('48 42 6742222'); var_dump($oPhone->isMobile()); var_dump($oPhone->isFixed()); var_dump($oPhone->isPremiumRate()); var_dump($oPhone->isTollFree()); var_dump($oPhone->isSharedCost()); var_dump($oPhone->isUAN()); var_dump($oPhone->isVoip()); var_dump($oPhone->getInternationalFormat()); var_dump($oPhone->getNationalFormat()); var_dump($oPhone->getRegion());
returns:
bool(false)
bool(true)
bool(false)
bool(false)
bool(false)
bool(false)
bool(false)
string(11) "48426742222"
string(9) "426742222"
string(7) "Łódź"
Running the tests
./vendor/bin/phpunit
Authors
- Marcin Pudełek - Initial work - mrcnpdlk
See also the list of contributors who participated in this project.
License
This project is licensed under the MIT License - see the LICENSE file for details