forked from quantity-digital/craftcms-altapay
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 989 Bytes
/
composer.json
File metadata and controls
48 lines (48 loc) · 989 Bytes
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
{
"name": "altapay/craftcms-altapay",
"description": "Altapay gateway integration for Craft Commerce 5",
"type": "craft-plugin",
"version": "5.0.0",
"keywords": [
"craft",
"cms",
"craftcms",
"craft-plugin",
"commerce",
"craft-commerce",
"craft-commerce-plugin",
"altapay",
"payment",
"gateway",
"integration"
],
"support": {
"email": "support@altapay.com",
"docs": "https://github.com/AltaPay/plugin-craftcommerce/wiki",
"issues": "https://github.com/AltaPay/plugin-craftcommerce/issues"
},
"license": "MIT",
"authors": [
{
"name": "AltaPay A/S",
"homepage": "https://www.altapay.com/"
}
],
"require": {
"craftcms/cms": "^5.0",
"craftcms/commerce": "^5.0",
"altapay/api-php": "^3.5"
},
"autoload": {
"psr-4": {
"QD\\altapay\\": "src/"
}
},
"extra": {
"name": "Altapay for Craft Commerce",
"handle": "craftcms-altapay",
"class": "QD\\altapay\\Altapay",
"hasCpSettings": false,
"hasCpSection": false
}
}