forked from FosterCommerce/shipstation-connect
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
55 lines (55 loc) · 1.7 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": "fostercommerce/shipstationconnect",
"description": "A Craft CMS plugin for integrating Craft Commerce with ShipStation",
"homepage": "https://github.com/fostercommerce/shipstation-connect",
"type": "craft-plugin",
"version": "2.0.4",
"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": {
"craftcms/cms": "^4.0",
"craftcms/commerce": "^4.0"
},
"require-dev": {
"fostercommerce/phpstan": "dev-main",
"fostercommerce/ecs": "dev-main",
"fostercommerce/rector": "dev-main",
"roave/security-advisories": "dev-latest"
},
"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": "rector process",
"rector-dry-run": "rector process --dry-run"
}
}