-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
51 lines (51 loc) · 1.37 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
{
"name": "thejoshsmith/commerce-xero",
"description": "Send Commerce invoices to Xero including contacts, payments and even inventory updates.",
"type": "craft-plugin",
"version": "1.0.4.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"xero",
"invoice"
],
"license": "proprietary",
"authors": [
{
"name": "Josh Smith",
"homepage": "https://joshthe.dev/"
},
{
"name": "Myles Derham",
"homepage": "https://www.mylesderham.dev/"
}
],
"require": {
"craftcms/cms": "^3.1.0",
"craftcms/commerce": "^2.0.0 || ^3.0.0",
"calcinai/xero-php": "^v2.2.4"
},
"autoload": {
"psr-4": {
"thejoshsmith\\commerce\\xero\\": "src/"
}
},
"support": {
"docs": "https://github.com/thejoshsmith/commerce-xero/blob/master/README.md",
"issues": "https://github.com/thejoshsmith/commerce-xero/issues"
},
"extra": {
"name": "Xero",
"handle": "commerce-xero",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/thejoshsmith/commerce-xero/master/CHANGELOG.md",
"components": {
"XeroConnectionService": "thejoshsmith\\commerce\\xero\\services\\XeroConnectionService",
"XeroAPIService": "thejoshsmith\\commerce\\xero\\services\\XeroAPIService"
},
"class": "thejoshsmith\\commerce\\xero\\Plugin"
}
}