-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
executable file
·39 lines (39 loc) · 1.12 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
{
"name": "madebyraygun/one-click-payments",
"description": "Payments plugin for Craft CMS using Formie and Stripe Checkout",
"type": "craft-plugin",
"version": "0.9.1",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"one-click payments"
],
"license": "MIT",
"authors": [
{
"name": "Raygun",
"homepage": "https://github.com/madebyraygun"
}
],
"require": {
"craftcms/cms": "^3.0.0",
"verbb/formie": "^1.5.0",
"stripe/stripe-php": "^7.121"
},
"autoload": {
"psr-4": {
"madebyraygun\\oneclickpayments\\": "src/"
}
},
"extra": {
"name": "One-click Payments",
"handle": "one-click-payments",
"developer": "Raygun",
"developerUrl": "https://madebyraygun.com",
"documentationUrl": "https://github.com/madebyraygun/one-click-payments#readme",
"changelogUrl": "https://github.com/madebyraygun/one-click-payments/blob/main/CHANGELOG.md",
"class": "madebyraygun\\oneclickpayments\\OneclickPayments"
}
}