-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
42 lines (42 loc) · 1.01 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
{
"name": "craftcms/commerce-paypal",
"description": "PayPal integration for Craft Commerce 3.3+",
"version": "3.0.0",
"type": "craft-plugin",
"keywords": [
"paypal",
"commerce",
"craftcms",
"omnipay",
"yii2"
],
"license": "MIT",
"authors": [
{
"name": "Pixel & Tonic",
"homepage": "https://pixelandtonic.com/"
}
],
"support": {
"email": "support@craftcms.com",
"issues": "https://github.com/craftcms/commerce-paypal/issues?state=open",
"source": "https://github.com/craftcms/commerce-paypal",
"docs": "https://github.com/craftcms/commerce-paypal",
"rss": "https://github.com/craftcms/commerce-paypal/commits/master.atom"
},
"require": {
"craftcms/cms": "^3.6",
"craftcms/commerce": "^3.3",
"craftcms/commerce-omnipay": "^3.0",
"omnipay/paypal": "^3.0.2"
},
"autoload": {
"psr-4": {
"craft\\commerce\\paypal\\": "src/"
}
},
"extra": {
"name": "PayPal for Craft Commerce",
"handle": "commerce-paypal"
}
}