-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.61 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
{
"name": "fostercommerce/commerce-stripe-paymentsource",
"description": "Manage payment sources for the Craft Commerce Stripe payment gateway",
"type": "craft-plugin",
"version": "1.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"Craft Commerce",
"Stripe",
"craft-plugin",
"commerce-stripe-paymentsource"
],
"support": {
"docs": "https://github.com/commerce-stripe-paymentsource/commerce-stripe-paymentsource/blob/master/README.md",
"issues": "https://github.com/commerce-stripe-paymentsource/commerce-stripe-paymentsource/issues"
},
"license": "MIT",
"authors": [
{
"name": "Foster Commerce",
"homepage": "https://fostercommerce.com"
}
],
"require": {
"craftcms/cms": "^3.1.5",
"craftcms/commerce": "^2.1.2",
"craftcms/commerce-stripe": "^1.2",
"stripe/stripe-php": "^6.1"
},
"autoload": {
"psr-4": {
"fostercommerce\\commercestripepaymentsource\\": "src/"
}
},
"extra": {
"name": "Stripe for Craft Commerce Payment Sources",
"handle": "commerce-stripe-paymentsource",
"hasCpSettings": false,
"hasCpSection": false,
"changelogUrl": "https://raw.githubusercontent.com/commerce-stripe-paymentsource/commerce-stripe-paymentsource/master/CHANGELOG.md",
"components": {
"service": "fostercommerce\\commercestripepaymentsource\\services\\CommercestripepaymentsourceService"
},
"class": "fostercommerce\\commercestripepaymentsource\\Plugin"
}
}