-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
composer.json
45 lines (45 loc) · 979 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "ph-7/eu-vat-validator",
"description": "A simple and clean PHP class that validates EU VAT numbers against the central ec.europa.eu database (using the official europa API).",
"keywords": [
"eu vat",
"vat number",
"validate eu vat",
"validate vat number",
"vat validator",
"vat number validator",
"vat",
"tva",
"tva number",
"validation",
"validator",
"VIES"
],
"type": "library",
"homepage": "https://pierrehenry.be",
"license": "GPL-3.0-or-later",
"authors": [
{
"name": "Pierre-Henry Soria",
"email": "[email protected]",
"homepage": "https://github.com/pH-7/eu-vat-validator",
"role": "Software Engineer"
}
],
"require": {
"php": ">=7.1.0",
"ext-soap": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"phake/phake": "^3.1"
},
"autoload": {
"psr-4": {
"PH7\\Eu\\": "src"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
}