-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
60 lines (60 loc) · 1.4 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "mibo/vat",
"type": "library",
"description": "PHP Library for VAT abstraction",
"keywords": [
"PHP",
"EU VAT",
"EU",
"European Union",
"VAT rates",
"VAT rate",
"VAT",
"MiBo",
"Library",
"Lib",
"Package",
"Money",
"Tax"
],
"authors": [
{
"name": "Michal Boris",
"email": "[email protected]"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"MiBo\\VAT\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MiBo\\VAT\\Tests\\": "tests/"
}
},
"require": {
"php": "^8.2",
"mibo/taxonomy": "^1.1"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpunit/php-invoker": "^4.0",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-strict-rules": "^1.5",
"jetbrains/phpstorm-attributes": "^1.0",
"slevomat/coding-standard": "^8.13",
"phpstan/extension-installer": "^1.3",
"php-parallel-lint/php-parallel-lint": "^1.3",
"nesbot/carbon": "^2.71 || ^3.0"
},
"config": {
"platform-check": true,
"lock": false,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}