rocketfellows / lv-vat-format-validator
Installs: 21
Dependents: 1
Suggesters: 0
Security: 0
Stars: 0
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/rocketfellows/lv-vat-format-validator
Requires
- php: >=7.4
- rocketfellows/country-vat-format-validator-interface: ^1.0
Requires (Dev)
- phpstan/phpstan: ^0.12.90
- phpunit/phpunit: ^8.5
- squizlabs/php_codesniffer: 3.6.2
README
This component provides Latvia vat number format validator.
Implementation of interface rocketfellows\CountryVatFormatValidatorInterface\CountryVatFormatValidatorInterface
Depends on https://github.com/rocketfellows/country-vat-format-validator-interface
Installation
composer require rocketfellows/lv-vat-format-validator
Usage example
Valid Latvia vat number:
$validator = new LVVatFormatValidator(); $validator->isValid('LV12345678901'); $validator->isValid('12345678901');
Returns:
true true
Invalid Latvia vat number:
$validator = new LVVatFormatValidator(); $validator->isValid('LV123456789011'); $validator->isValid('LV1234567890'); $validator->isValid('123456789011'); $validator->isValid('1234567890'); $validator->isValid('DE12345678901');
false false false false false
Contributing
Welcome to pull requests. If there is a major changes, first please open an issue for discussion.
Please make sure to update tests as appropriate.