bespin / datavalidation-taxid
Library to verify tax ids
v1.3.2
2025-05-20 12:21 UTC
Requires
Requires (Dev)
- phpstan/phpstan: ^2
README
Library to verify tax ids
List of supported countries
Country | Name | Information |
---|---|---|
Germany | Steuerliche Identifikationsnummer | Wikipedia - Steuerliche Identifikationsnummer |
How to use
composer require bespin/datavalidation-taxid
<?php
use Bespin\DataValidation;
if (DataValidation\TaxId::verify('xxx', DataValidation\Country::Germany)) {
echo 'xxx is a valid taxId';
} else {
echo 'xxx is not a valid taxId';
}