-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1.04 KB
/
composer.json
File metadata and controls
44 lines (44 loc) · 1.04 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
{
"name": "webdna/commerce-order-notes",
"description": "Add notes to an order, they can also affect price.",
"type": "craft-plugin",
"version": "3.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"commerce order notes"
],
"support": {
"docs": "https://github.com/webdna/commerce-order-notes/blob/master/README.md",
"issues": "https://github.com/webdna/commerce-order-notes/issues"
},
"license": "proprietary",
"authors": [
{
"name": "webdna",
"homepage": "https://webdna.co.uk"
}
],
"require": {
"craftcms/cms": "^4.0",
"craftcms/commerce": "^4.0"
},
"autoload": {
"psr-4": {
"webdna\\commerce\\ordernotes\\": "src/"
}
},
"extra": {
"name": "Commerce Order Notes",
"handle": "commerce-order-notes",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/webdna/commerce-order-notes/master/CHANGELOG.md",
"components": {
"notes": "webdna\\commerce\\ordernotes\\services\\Notes"
},
"class": "webdna\\commerce\\ordernotes\\OrderNotes"
}
}