bolivir / vat
A package for validating EU VAT numbers, checking their format and existence.
Requires
- php: ^8.1
Requires (Dev)
- friendsofphp/php-cs-fixer: ^3.12.2
- phpstan/phpstan: 1.10.x-dev
- phpunit/phpunit: ^9.5.28
Suggests
- ext-soap: Needed to support VIES VAT number validation
This package is auto-updated.
Last update: 2025-03-29 01:17:00 UTC
README
VAT
A package for validating EU VAT numbers, checking their format and existence.
List of available clients
- ✔ VIES
Installation
This package can be installed via composer:
$ composer require bolivir/vat
How to use
Validate the format
The method validateFormat
will check the format for a given VAT number. It will not check the existence!
Example:
$VAT = new \Bolivir\Vat\Vat(); $response = $VAT->validateFormat('FR12345678901');
Calling the validateFormat
method will return a VatFormatValidationResponse
Bolivir\Vat\VatFormatValidationResponse { -countryCode: string -vatNumber: string -valid: boolean }
Validate the existence
The method validate
will check the vat number for real existence, it will check it by the VIES service
Example:
$VAT = new \Bolivir\Vat\Vat(); echo $VAT->validate('FR12345678901');
Calling the validate
method will return a VatValidationResponse
Bolivir\Vat\VatValidationResponse { -countryCode: string -vatNumber: string -requestDate: string -valid: boolean -name: string -address: string }
Change log
Please see CHANGELOG for more information on what has been changed recently.
Security
If you discover any security related issues, please email mosselmanricardo@gmail.com instead of using the issue tracker.