jbohme / vat-validator
A PHP package to validate VAT numbers for all countries.
1.0.0
2024-02-19 01:04 UTC
Requires
- php: 8.*
Requires (Dev)
- phpunit/phpunit: ^9
This package is auto-updated.
Last update: 2025-03-22 14:56:31 UTC
README
A PHP package to validate VAT numbers for all countries.
Support for:
Country | Code(ISO 3166-1 alpha-2) | Natural Person | Legal Person |
---|---|---|---|
Brazil | BR | CPF | CNPJ |
Installation
Run in your project:
composer require jbohme/vat-validator
Usage
Simply use the helper functions for natural or legal persons. Pass the desired country code as the first parameter and then the document string.
<?php $cnpj = legal_person_document('BR', "48.300.733/0001-78"); // or $cpf = natural_person_document('BR', "550.371.510-15");
If the document is invalid, the DocumentInvalidException exception will be thrown; otherwise, the object is created.
Contribution
If you want to contribute with a document, pay attention to:
- Create the class in src/Documents/LegalPerson and/or src/Documents/NaturalPerson;
- Extend DocumentAbstract;
- Implement the logic in the isValid function;
- Map the class in country_mapping.php;
- Create the test following the pattern {CountryName}VatTest.php and implement the CountryVatTestInterface interface.
After making the changes, do the following:
- Fork the project;
- Create a branch for your modification (
git checkout -b feature/new-feature
); - Commit your changes (
git commit -am 'Add new feature'
); - Push to the branch (
git push origin feature/new-feature
); - Open a pull request.
License
The Vat Validator is open-source software licensed under the MIT license.