-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·48 lines (48 loc) · 1.24 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
48
{
"name": "born05/craft-commerce-buckaroo",
"description": "Buckaroo Gateway for Craft Commerce",
"type": "craft-plugin",
"keywords": [
"buckaroo",
"commerce",
"craftcms",
"omnipay"
],
"license": "proprietary",
"authors": [
{
"name": "Roel van Hintum",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0.2",
"craftcms/cms": "^4.0.0-alpha|^5.0.0-beta.1",
"craftcms/commerce": "^4.0.0-beta.2|^5.0.0-beta.1",
"craftcms/commerce-omnipay": "^4.1.0",
"born05/omnipay-buckaroo": "~3.0"
},
"autoload": {
"psr-4": {
"born05\\commerce\\buckaroo\\": "src/"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/born05/craft-commerce-buckaroo/issues",
"source": "https://github.com/born05/craft-commerce-buckaroo",
"docs": "https://github.com/born05/craft-commerce-buckaroo/blob/master/README.md",
"rss": "https://github.com/born05/craft-commerce-buckaroo/releases.atom"
},
"extra": {
"name": "Buckaroo for Craft Commerce",
"handle": "commerce-buckaroo"
},
"config": {
"allow-plugins": {
"php-http/discovery": true,
"yiisoft/yii2-composer": true,
"craftcms/plugin-installer": true
}
}
}