-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.28 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
{
"name": "angellco/vend",
"description": "Connect your Craft Commerce store to Vend POS.",
"type": "craft-plugin",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"vend"
],
"support": {
"docs": "https://github.com/angell-co/vend/blob/master/README.md",
"issues": "https://github.com/angell-co/vend/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Angell & Co",
"homepage": "https://angell.io"
}
],
"require": {
"php": ">=7.0.0",
"craftcms/cms": "^3.3.15",
"craftcms/commerce": "^2.2.8 || ^3.0.0",
"craftcms/feed-me": "^4.1",
"venveo/craft-oauthclient": "^2.1.3"
},
"autoload": {
"psr-4": {
"angellco\\vend\\": "src/"
}
},
"extra": {
"name": "Vend",
"handle": "vend",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/angell-co/vend/master/CHANGELOG.md",
"components": {
"api": "angellco\\vend\\services\\Api",
"importProfiles": "angellco\\vend\\services\\ImportProfiles",
"orders": "angellco\\vend\\services\\Orders",
"products": "angellco\\vend\\services\\Products",
"parkedSales": "angellco\\vend\\services\\ParkedSales"
},
"class": "angellco\\vend\\Vend"
}
}