forked from surprisehighway/craft-avatax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
52 lines (52 loc) · 1.49 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
{
"name": "dnplkndll/craft-avatax",
"description": "Calculate and add sales tax to an order's base tax using Avalara's Avatax service.",
"type": "craft-plugin",
"version": "2.0.7",
"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": "^3.0",
"craftcms/cms": "^3.1.0",
"avalara/avataxclient": "^19.1"
},
"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"
}
}
}