toxicdigital/vat-validator
Composer 安装命令:
composer require toxicdigital/vat-validator
包简介
Validate a VAT number against the official European Commission VIES VAT number validation SOAP service.
README 文档
README
Validate a VAT number against the official European Commission VIES VAT number validation SOAP service.
Prerequisites
- PHP version 7 and above.
- php7.x-soap extension
How to install
composer require "toxicdigital/vat-validator"
How to use
use Toxic\Validator\Vat as VatValidator;
$validator = VatValidator::getInstance();
//Returns true or false
$validator->isValid("XY123456789");
//If VAT number is valid, company info is available
$validator->getCompany();
/*
* Toxic\Validator\Vat\Company Object
* (
* [name] => John Doe
* [address] => 123 Main St, Anytown, UK
* [vatNumber] => 100
* [countryCode] => GB
* [valid] => true
* )
*/
统计信息
- 总下载量: 17
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 2
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2018-02-18