forked from white-nl/commerce-sendcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.54 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.54 KB
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
{
"name": "white-nl/commerce-sendcloud",
"description": "Use the official Sendcloud plugin to connect your Craft Commerce webshop to shipping platform Sendcloud and turn the laborious task of creating shipping labels into a quick and easy job.",
"type": "craft-plugin",
"license": "proprietary",
"require": {
"php": "^8.2",
"ext-json": "*",
"craftcms/cms": "^5.2.0",
"craftcms/commerce": "^5.0.0",
"nystudio107/craft-code-editor": "^1.0"
},
"autoload": {
"psr-4": {
"white\\commerce\\sendcloud\\": "src/"
}
},
"extra": {
"handle": "commerce-sendcloud",
"name": "Sendcloud",
"developer": "Digital Agency WHITE",
"developerUrl": "https://white.nl/en/",
"hasCpSettings": true,
"hasCpSection": true,
"class": "white\\commerce\\sendcloud\\SendcloudPlugin",
"documentationUrl": "https://white.nl/en/craft-plugins/sendcloud/docs/"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/ecs": "dev-main"
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
},
"sort-packages": true,
"optimize-autoloader": true
}
}