aran / vat-lookup
A very simple, light weight PHP client for validating any EU VAT number against the official europa.eu API
Installs: 0
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 0
Forks: 0
Open Issues: 0
pkg:composer/aran/vat-lookup
Requires
- php: ^5.6
This package is not auto-updated.
Last update: 2025-12-26 14:50:24 UTC
README
A very simple, light weight PHP client for validating EU VAT numbers against the central europa.eu database.
Here's a very simple example of this client in action:
$vat_number = '123 4567 89'; // The VAT number you wish to lookup $country_code = 'GB'; $details = (new vatRegistration)->checkVat($vat_number, $country_code); var_dump($details)