koosh / vat-utility
VAT utility to check for tax free zones in the European Union.
Installs: 8
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/koosh/vat-utility
Requires
- php: ^5.3 | ^7.0
Requires (Dev)
- phpunit/phpunit: ~4.0
This package is not auto-updated.
Last update: 2025-10-02 00:19:31 UTC
README
This is a simple class to check based on country/region ISO and the zip/postal code if a place in the EU is considered a tax free zone based on https://en.wikipedia.org/wiki/European_Union_value_added_tax.
Install via Composer
{ "require": { "koosh/vat-utility": "dev-master" } }
Example usage
use koosh\VATUtility; if (EUVATFreeZone::isEUTaxFreeZone('FI', 22100)) { // Is VAT free zone. } else { // Is not VAT free zone. }