forked from surprisehighway/craft-avatax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
61 lines (61 loc) · 1.69 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
61
{
"name": "surprisehighway/craft-avatax",
"description": "Calculate and add sales tax to an order's base tax using Avalara's Avatax service.",
"type": "craft-plugin",
"version": "3.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"avatax"
],
"support": {
"docs": "https://github.com/surprisehighway/craft-avatax/blob/master/README.md",
"issues": "https://github.com/surprisehighway/craft-avatax/issues"
},
"license": "MIT",
"authors": [
{
"name": "Surprise Highway",
"homepage": "http://surprisehighway.com"
}
],
"require": {
"craftcms/commerce": "^4.0",
"craftcms/cms": "^4.0",
"avalara/avataxclient": "^22.3.0"
},
"repositories": [
{
"type": "composer",
"url": "https://asset-packagist.org"
}
],
"autoload": {
"psr-4": {
"surprisehighway\\avatax\\": "src/"
}
},
"extra": {
"name": "Avatax",
"handle": "avatax",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/surprisehighway/craft-avatax/master/CHANGELOG.md",
"class": "surprisehighway\\avatax\\Avatax",
"components": {
"salesTaxService": "surprisehighway\\avatax\\services\\SalesTaxService",
"logService": "surprisehighway\\avatax\\services\\LogService"
}
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
},
"platform": {
"php": "8.0.2"
}
}
}