-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
79 lines (79 loc) · 1.97 KB
/
composer.json
File metadata and controls
79 lines (79 loc) · 1.97 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "mibo/prices",
"type": "library",
"description": "PHP lib for prices",
"keywords": [
"PHP",
"Properties",
"Property",
"Prices",
"Price",
"Calculation",
"Math",
"Mathematics",
"Mathematical",
"Currencies",
"Currency",
"Value",
"VAT",
"Tax",
"Exchange",
"Exchanging",
"MiBo",
"Library",
"Package",
"Lib",
"Money"
],
"authors": [
{
"name": "Michal Boris",
"email": "michal.boris27@gmail.com"
}
],
"license": "MIT",
"autoload": {
"psr-4": {
"MiBo\\Prices\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MiBo\\Prices\\Tests\\": [
"tests/Core/",
"tests/"
]
}
},
"require": {
"php": "^8.2",
"mibo/properties": "^1.1",
"mibo/currencies": "^1.0",
"mibo/taxonomy": "^1.1",
"mibo/vat": "^2.0"
},
"require-dev": {
"phpunit/phpunit": "^10.5",
"phpunit/php-invoker": "^4.0",
"phpstan/phpstan": "^1.5",
"squizlabs/php_codesniffer": "^3.6",
"phpstan/phpstan-strict-rules": "^1.5",
"jetbrains/phpstorm-attributes": "^1.0"
},
"provide": {
"mibo/properties-implementation": "^1.0"
},
"suggest": {
"mibo/taxonomy-cpa": "Classification of Products by Activity (CPA) to retrieve VAT rates by category",
"mibo/vat-value-resolver-eu": "VAT value resolver for EU countries",
"mibo/vat-resolver-eu": "VAT resolver based on the CPA for EU countries",
"mibo/laravel-properties": "Implementation for Laravel framework and Eloquent ORM"
},
"config": {
"platform-check": true,
"lock": false,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}