adamaru / polish-validator-bundle
Symfony bundle with validators for Polish identification numbers: PESEL, NIP, REGON, PWZ.
Requires
- php: >=5.6
- kiczort/polish-validator: ^1.1
- symfony/config: ~3.2 || ~4.0
- symfony/dependency-injection: ~3.2 || ~4.0
- symfony/http-kernel: ~3.2 || ~4.0
- symfony/validator: ~3.2 || ~4.0
Requires (Dev)
- phpunit/phpunit: ~5.7 || ~7.0
- symfony/phpunit-bridge: ~3.2 || ~4.0
This package is auto-updated.
Last update: 2022-03-08 20:56:52 UTC
README
This is Symfony 3/4 bundle with validators for Polish identification numbers like: PESEL, NIP, REGON and PWZ.
Installation
composer require adamaru/polish-validator-bundle
Add bundle to AppKernel.php
public function registerBundles() { $bundles = array( ... new Kiczort\PolishValidatorBundle\KiczortPolishValidatorBundle(), ... ); return $bundles; }
Documentation
Example of use PeselValidator:
There are PESEL numbers with errors in real word, so in case of this validator checksum checking is only for strict mode. In case of none strict mode it checks length, used chars and correctness of date of birth.
... // src/AppBundle/Entity/Person.php namespace AppBundle\Entity; use Kiczort\PolishValidatorBundle\Validator\Constraints as KiczortAssert; class Person { /** * @KiczortAssert\Pesel( * message = "The '{{ value }}' is not a valid PESEL number.", * strict = true * ) */ protected $pesel; }
Example of use NipValidator:
... // src/AppBundle/Entity/Person.php namespace AppBundle\Entity; use Kiczort\PolishValidatorBundle\Validator\Constraints as KiczortAssert; class Person { /** * @KiczortAssert\Nip */ protected $nip; }
Example of use RegonValidator:
... // src/AppBundle/Entity/Company.php namespace AppBundle\Entity; use Kiczort\PolishValidatorBundle\Validator\Constraints as KiczortAssert; class Company { /** * @KiczortAssert\Regon */ protected $regon; }
Example of use PwzValidator:
PWZ means "licence to practise a profession" (pl. "prawo wykonywania zawodu"), number given to doctors from NIL (polish Chamber of Physicians and Dentists). Validator accepts also empty strings and nulls so you have to add "Assert/NotBlank" myself.
... // src/AppBundle/Entity/Company.php namespace AppBundle\Entity; use Kiczort\PolishValidatorBundle\Validator\Constraints as KiczortAssert; class Doctor { /** * @KiczortAssert\Pwz */ protected $pwz; }
Bug tracking
GitHub issues. If you have found bug, please create an issue.
MIT License
License can be found here.