-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.61 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
{
"name": "surprisehighway/craft-taxcloud",
"description": "TaxCloud integration for Craft Commerce",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"taxcloud"
],
"support": {
"docs": "https://github.com/surprisehighway/craft-taxcloud/blob/master/README.md",
"issues": "https://github.com/surprisehighway/craft-taxcloud/issues"
},
"license": "MIT",
"authors": [
{
"name": "Surprise Highway",
"homepage": "https://surprisehighway.com"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"craftcms/commerce": "^4.0.0"
},
"autoload": {
"psr-4": {
"surprisehighway\\taxcloud\\": "src/"
}
},
"extra": {
"name": "TaxCloud",
"handle": "taxcloud",
"developer": "Surprise Highway",
"developerUrl": "https://surprisehighway.com",
"documentationUrl": "https://github.com/surprisehighway/craft-taxcloud/blob/master/README.md",
"changelogUrl": "https://raw.githubusercontent.com/surprisehighway/craft-taxcloud/master/CHANGELOG.md",
"components": {
"api": "surprisehighway\\taxcloud\\services\\Api"
},
"class": "surprisehighway\\taxcloud\\TaxCloud"
},
"config": {
"allow-plugins": {
"craftcms/plugin-installer": true,
"yiisoft/yii2-composer": true
},
"sort-packages": true,
"optimize-autoloader": true,
"platform": {
"php": "8.0.2"
}
}
}