-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
41 lines (41 loc) · 1.01 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
{
"name": "webdna/commerce-bulk-pricing",
"description": "Bulk pricing for products",
"type": "craft-plugin",
"version": "2.1.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"commerce bulk pricing"
],
"support": {
"docs": "https://github.com/webdna/commerce-bulk-pricing/blob/master/README.md",
"issues": "https://github.com/webdna/commerce-bulk-pricing/issues"
},
"license": "proprietary",
"authors": [
{
"name": "webdna",
"homepage": "https://webdna.co.uk"
}
],
"require": {
"craftcms/cms": "^4.0.0",
"craftcms/commerce": "^4.0"
},
"autoload": {
"psr-4": {
"webdna\\commerce\\bulkpricing\\": "src/"
}
},
"extra": {
"name": "Commerce Bulk Pricing",
"handle": "commerce-bulk-pricing",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/webdna/commerce-bulk-pricing/master/CHANGELOG.md",
"class": "webdna\\commerce\\bulkpricing\\BulkPricing"
}
}