-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.47 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
{
"name": "spicyweb/craft-reorder",
"description": "Easy reordering of previous Craft Commerce user orders",
"version": "3.0.0",
"type": "craft-plugin",
"keywords": [
"craftcms",
"craft-plugin",
"commerce"
],
"license": "proprietary",
"homepage": "https://spicyweb.com.au/",
"support": {
"issues": "https://github.com/spicywebau/craft-reorder/issues",
"source": "https://github.com/spicywebau/craft-reorder",
"docs": "https://github.com/spicywebau/craft-reorder/blob/3.0.0/README.md",
"rss": "https://github.com/spicywebau/craft-reorder/commits/3.x.atom"
},
"require": {
"craftcms/cms": "^5.0.0",
"craftcms/commerce": "^5.0.0"
},
"autoload": {
"psr-4": {
"spicyweb\\reorder\\": "src/"
}
},
"extra": {
"handle": "reorder",
"name": "ReOrder",
"class": "spicyweb\\reorder\\Plugin",
"developer": "Spicy Web",
"developerUrl": "https://spicyweb.com.au/",
"changelogUrl": "https://github.com/spicywebau/craft-reorder/blob/3.x/CHANGELOG.md",
"downloadUrl": "https://github.com/spicywebau/craft-reorder/archive/refs/tags/3.0.0.zip"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/rector": "dev-main",
"craftcms/ecs": "dev-main"
},
"scripts": {
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
}
}