rocketfellows / si-vat-format-validator
v1.0.0
2023-04-04 17:21 UTC
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
This package is not auto-updated.
Last update: 2024-10-30 23:13:30 UTC
README
This component provides Slovenia 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/si-vat-format-validator
Usage example
Valid Slovenia vat number:
$validator = new SIVatFormatValidator(); $validator->isValid('SI12345678'); $validator->isValid('12345678');
Returns:
true true
Invalid Slovenia vat number:
$validator = new SIVatFormatValidator(); $validator->isValid('SI123456789'); $validator->isValid('SI1234567'); $validator->isValid('DE12345678'); $validator->isValid('123456789'); $validator->isValid('1234567'); $validator->isValid('');
false 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.