-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
44 lines (44 loc) · 1.1 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
{
"name": "ether/web-payments",
"description": "Use the Web Payments API and Google / Apply Pay to vastly improve your checkout process!",
"version": "4.0.0",
"type": "craft-plugin",
"keywords": [
"payments",
"web",
"apple",
"google",
"pay",
"apple pay",
"google pay"
],
"license": "proprietary",
"authors": [
{
"name": "Ether",
"homepage": "https://ethercreative.co.uk"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/ethercreative/web-payments/issues?state=open",
"source": "https://github.com/ethercreative/web-payments",
"docs": "https://github.com/ethercreative/web-payments/blob/master/README.md"
},
"require": {
"craftcms/cms": "^4.0.0",
"craftcms/commerce": "^4.0.0",
"ext-json": "*"
},
"autoload": {
"psr-4": {
"ether\\webpayments\\": "src/"
}
},
"extra": {
"handle": "web-payments",
"name": "Web Payments",
"documentationUrl": "https://github.com/ethercreative/web-payments/blob/master/README.md",
"class": "ether\\webpayments\\WebPayments"
}
}