-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
60 lines (60 loc) · 1.7 KB
/
composer.json
File metadata and controls
60 lines (60 loc) · 1.7 KB
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
{
"name": "tasdev-au/craft-fulfillments",
"description": "Add Shopify like fulfillments to your Craft Commerce orders.",
"type": "craft-plugin",
"version": "5.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"fulfillments",
"shopify",
"commerce",
"orders",
"shipping",
"ship",
"tracking",
"track",
"post"
],
"support": {
"docs": "https://tas.dev/plugins/fulfillments/installation",
"issues": "https://github.com/tasdev-au/craft-fulfillments/issues"
},
"license": "proprietary",
"authors": [
{
"name": "Jayden Smith",
"homepage": "https://tas.dev"
}
],
"require": {
"craftcms/cms": "^5.0.0-beta.10",
"craftcms/commerce": "^5.0.0-beta.1"
},
"autoload": {
"psr-4": {
"tasdev\\orderfulfillments\\": "src/"
}
},
"extra": {
"name": "Fulfillments",
"handle": "order-fulfillments",
"hasCpSettings": true,
"hasCpSection": true,
"changelogUrl": "https://raw.githubusercontent.com/tasdev-au/craft-fulfillments/craft-3/CHANGELOG.md",
"components": {
"fulfillments": "tasdev\\orderfulfillments\\services\\Fulfillments",
"fulfillmentsLines": "tasdev\\orderfulfillments\\services\\FulfillmentLines",
"carriers": "tasdev\\orderfulfillments\\services\\Carriers"
},
"class": "tasdev\\orderfulfillments\\OrderFulfillments"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}