forked from enupal/stripe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.48 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
{
"name": "enupal/stripe",
"description": "Allows customers sign up for recurring and one-time payments with Stripe, perfect for orders, donations, subscriptions, and events. Create simple payment forms in seconds easily without coding. For Craft CMS 3.x",
"type": "craft-plugin",
"version": "1.8.5",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"stripe",
"buy now",
"recurring payments",
"payments",
"donations",
"mobile",
"subscriptions",
"plans",
"sell",
"payment",
"credit card",
"pay",
"checkout",
"e-commerce",
"iDEAL",
"stripe elements"
],
"autoload": {
"psr-4": {
"enupal\\stripe\\": "src/"
}
},
"authors": [
{
"name": "Enupal",
"homepage": "http://enupal.com"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/enupal/stripe/issues",
"docs": "https://enupal.com/craft-plugins/stripe-payments/docs"
},
"require": {
"craftcms/cms": "^3.1.0",
"stripe/stripe-php": "^6.6.0",
"phpoffice/phpspreadsheet": "^1.4"
},
"extra": {
"name": "Stripe Payments",
"handle": "enupal-stripe",
"hasSettings": true,
"changelogUrl": "https://raw.githubusercontent.com/enupal/stripe/master/CHANGELOG.md",
"developer": "Enupal",
"class": "enupal\\stripe\\Stripe",
"components": {
"app": "enupal\\stripe\\services\\App"
}
}
}