forked from DragonBe/vies
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.2 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.2 KB
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": "dragonbe@gmail.com",
"homepage": "http://dragonbe.com",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"DragonBe\\Vies\\": "src/Vies"
}
},
"autoload-dev": {
"psr-4": {
"DragonBe\\Tests\\Vies\\": "tests/Vies"
}
},
"require": {
"php": ">=5.4",
"ext-soap": "*",
"ext-pcntl": "*"
},
"require-dev": {
"phpunit/phpunit": "^4.7",
"phpunit/php-invoker": "^1.1",
"phploc/phploc": "^2.1",
"phpmd/phpmd": "^2.2",
"sebastian/phpcpd": "^2.0",
"pdepend/pdepend": "^2.1",
"squizlabs/php_codesniffer": "^2.3",
"phing/phing": "^2.11",
"codeclimate/php-test-reporter": "dev-master",
"phpdocumentor/phpdocumentor": "^2.8"
}
}