-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
64 lines (64 loc) · 1.74 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
57
58
59
60
61
62
63
64
{
"name": "fostercommerce/shipstationconnect",
"description": "A Craft CMS plugin for integrating Craft Commerce with ShipStation",
"homepage": "https://github.com/fostercommerce/shipstation-connect",
"type": "craft-plugin",
"version": "3.0.0",
"keywords": [
"craft",
"plugin",
"shipstation"
],
"license": "proprietary",
"support": {
"email": "[email protected]",
"issues": "https://github.com/fostercommerce/shipstation-connect/issues?state=open",
"source": "https://github.com/fostercommerce/shipstation-connect/issues",
"docs": "https://github.com/fostercommerce/shipstation-connect/",
"rss": "https://github.com/fostercommerce/shipstation-connect/releases.atom"
},
"authors": [
{
"name": "Foster Commerce",
"homepage": "https://www.fostercommerce.com"
}
],
"autoload": {
"psr-4": {
"fostercommerce\\shipstationconnect\\": "src/"
}
},
"require": {
"php": "^8.2",
"craftcms/cms": "^5.0",
"craftcms/commerce": "^5.0",
"jms/serializer": "^3.31"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/rector": "dev-main",
"fostercommerce/ecs": "dev-main",
"fostercommerce/rector": "dev-main",
"phpstan/phpstan": "^1.11"
},
"extra": {
"handle": "shipstationconnect",
"name": "ShipStation Connect",
"developer": "Foster Commerce"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"scripts": {
"phpstan": "phpstan --memory-limit=1G",
"ecs:check": "ecs check --ansi --memory-limit=1G",
"ecs:fix": "ecs check --ansi --fix --memory-limit=1G",
"rector:fix": "rector process --config rector.php",
"rector:dry-run": "rector process --dry-run --config rector.php"
}
}