forked from sjelfull/craft-ordernotes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.18 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
{
"name": "superbig/craft-ordernotes",
"description": "Order notes for Commerce",
"type": "craft-plugin",
"version": "2.0.3",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"order notes"
],
"support": {
"docs": "https://github.com/sjelfull/craft-ordernotes/blob/master/README.md",
"issues": "https://github.com/sjelfull/craft-ordernotes/issues"
},
"license": "MIT",
"authors": [
{
"name": "Superbig",
"homepage": "https://superbig.co"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"craftcms/commerce": ">=2.0.0"
},
"autoload": {
"psr-4": {
"superbig\\ordernotes\\": "src/"
}
},
"extra": {
"name": "Order Notes",
"handle": "order-notes",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/sjelfull/craft-ordernotes/master/CHANGELOG.md",
"components": {
"orderNotes": "superbig\\ordernotes\\services\\OrderNotesService"
},
"class": "superbig\\ordernotes\\OrderNotes"
}
}