forked from webdna/commerce-bulk-pricing
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
55 lines (55 loc) · 1.33 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
51
52
53
54
55
{
"name": "webdna/commerce-bulk-pricing-5",
"description": "Bulk pricing for products",
"type": "craft-plugin",
"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|^5.0.0",
"craftcms/commerce": "^4.0|^5.0"
},
"autoload": {
"psr-4": {
"webdna\\commerce\\bulkpricing\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G"
},
"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"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main"
}
}