rocketfellows / se-vat-format-validator
v1.0.0
2023-04-07 11:05 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
README
This component provides Sweden 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/se-vat-format-validator
Usage example
Valid Sweden vat number:
$validator = new SEVatFormatValidator(); $validator->isValid('SE123456789012'); $validator->isValid('123456789012');
Returns:
true true
Invalid Sweden vat number:
$validator = new SEVatFormatValidator(); $validator->isValid('SE12345678901'); $validator->isValid('SE1234567890123'); $validator->isValid('DE123456789012'); $validator->isValid('1234567890123'); $validator->isValid('12345678901'); $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.