-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
56 lines (56 loc) · 1.55 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
56
{
"name": "bymayo/commerce-widgets",
"description": "Insightful dashboard widgets for your Craft Commerce store.",
"type": "craft-plugin",
"version": "5.0.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"commerce widgets"
],
"support": {
"docs": "https://github.com/bymayo/commerce-widgets/blob/craft-5/README.md",
"issues": "https://github.com/bymayo/commerce-widgets/issues"
},
"license": "MIT",
"authors": [
{
"name": "ByMayo",
"homepage": "http://bymayo.co.uk"
}
],
"require": {
"craftcms/cms": "^5.0.0",
"craftcms/commerce": "^5.0.0"
},
"autoload": {
"psr-4": {
"bymayo\\commercewidgets\\": "src/"
}
},
"extra": {
"name": "Commerce Widgets",
"handle": "commerce-widgets",
"hasCpSettings": true,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/bymayo/commerce-widgets/craft-5/CHANGELOG.md",
"components": {
"commerceWidgetsService": "bymayo\\commercewidgets\\services\\CommerceWidgetsService"
},
"class": "bymayo\\commercewidgets\\CommerceWidgets"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/phpstan": "dev-main"
}
}