forked from craftcms/commerce-stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.52 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
{
"name": "craftcms/commerce-stripe",
"description": "Stripe integration for Craft Commerce 4.0+",
"type": "craft-plugin",
"keywords": [
"stripe",
"commerce",
"craftcms",
"yii2"
],
"license": "MIT",
"authors": [
{
"name": "Pixel & Tonic",
"homepage": "https://pixelandtonic.com/"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/craftcms/commerce-stripe/issues?state=open",
"source": "https://github.com/craftcms/commerce-stripe",
"docs": "https://github.com/craftcms/commerce-stripe/blob/master/README.md",
"rss": "https://github.com/craftcms/commerce-stripe/commits/master.atom"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0",
"stripe/stripe-php": "^10.0",
"craftcms/commerce": "^4.3"
},
"require-dev": {
"craftcms/phpstan": "dev-main",
"craftcms/ecs": "dev-main"
},
"autoload": {
"psr-4": {
"craft\\commerce\\stripe\\": "src/"
}
},
"scripts": {
"phpstan": "phpstan --memory-limit=1G",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix"
},
"extra": {
"name": "Stripe for Craft Commerce",
"handle": "commerce-stripe",
"documentationUrl": "https://github.com/craftcms/commerce-stripe/blob/master/README.md"
},
"config": {
"allow-plugins": {
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
},
"platform": {
"php": "8.0.2"
}
}
}