forked from verbb/commerce-payflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.31 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
{
"name": "verbb/commerce-payflow",
"description": "PayPal Payflow payment gateway plugin for Craft Commerce 2",
"type": "craft-plugin",
"version": "2.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"paypal",
"payflow",
"omnipay",
"commerce"
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/verbb/commerce-payflow/issues?state=open",
"source": "https://github.com/verbb/commerce-payflow",
"docs": "https://github.com/verbb/commerce-payflow",
"rss": "https://github.com/verbb/commerce-payflow/commits/v2.atom"
},
"license": "MIT",
"authors": [
{
"name": "Verbb",
"homepage": "https://verbb.io"
}
],
"require": {
"craftcms/cms": "^3.1.5",
"craftcms/commerce": "^2.0.0",
"craftcms/commerce-omnipay": "^2.0.0",
"omnipay/payflow": "^3.0.0"
},
"autoload": {
"psr-4": {
"verbb\\payflow\\": "src/"
}
},
"extra": {
"name": "PayPal Payflow",
"handle": "commerce-payflow",
"changelogUrl": "https://raw.githubusercontent.com/verbb/commerce-payflow/master/CHANGELOG.md",
"class": "verbb\\payflow\\Payflow"
}
}