forked from DragonBe/vies
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.19 KB
/
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
{
"name": "dragonbe/vies",
"type": "tool",
"description": "EU VAT numbers validation using the VIES Service of the European Commission",
"keywords": ["VIES","VAT","EU","EC"],
"homepage": "https://github.com/DragonBe/vies",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Michelangelo van Dam",
"email": "[email protected]",
"homepage": "http://dragonbe.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"DragonBe\\Vies\\": "src/Vies"
}
},
"autoload-dev": {
"psr-4": {
"DragonBe\\Tests\\Vies\\": "tests/Vies"
}
},
"require": {
"php": ">=7.1",
"ext-soap": "*"
},
"require-dev": {
"ext-pcntl": "*",
"phpunit/phpunit": "^7.1",
"phpunit/php-invoker": "^2.0",
"phploc/phploc": "^4.0",
"phpmd/phpmd": "^2.6",
"sebastian/phpcpd": "^4.0",
"pdepend/pdepend": "^2.5",
"squizlabs/php_codesniffer": "^3.2",
"phing/phing": "^2.16",
"infection/infection": "^0.8",
"sensiolabs/security-checker": "^5.0"
}
}