-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (85 loc) · 2.67 KB
/
composer.json
File metadata and controls
85 lines (85 loc) · 2.67 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "buckaroo/magento2",
"description": "Buckaroo Magento 2 extension",
"require": {
"php": "^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4",
"magento/module-payment": ">=100.3.3",
"magento/framework": ">=103.0.0",
"magento/module-backend": "^102.0",
"magento/module-catalog": "^104.0",
"magento/module-catalog-inventory": "^100.4",
"magento/module-checkout": "^100.4",
"magento/module-config": "^101.2",
"magento/module-configurable-product": "^100.4",
"magento/module-customer": "^103.0",
"magento/module-directory": "^100.4",
"magento/module-eav": "^102.1",
"magento/module-email": "^101.1",
"magento/module-media-storage": "^100.4",
"magento/module-quote": "^101.2",
"magento/module-sales": "^103.0",
"magento/module-sales-rule": "^101.2",
"magento/module-store": "^101.1",
"magento/module-tax": "^100.4",
"magento/module-ui": "^101.2",
"laminas/laminas-validator": "^2.64",
"buckaroo/sdk": "^1.23.2",
"monolog/monolog": "^2.9 || ^3.0",
"psr/log": "^2.0 || ^3.0",
"ext-json": "*",
"ext-curl": "*",
"ext-pcre": "*"
},
"type": "magento2-module",
"license": "CC-BY-NC-ND-3.0",
"authors": [
{
"name": "Buckaroo",
"email": "support@buckaroo.nl",
"homepage": "https://www.buckaroo.nl"
}
],
"support": {
"email": "support@buckaroo.nl",
"issues": "https://support.buckaroo.nl/contact",
"wiki": "https://support.buckaroo.nl",
"docs": "https://docs.buckaroo.io/"
},
"homepage": "https://www.buckaroo.nl",
"version" : "v2.4.0",
"minimum-stability": "stable",
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Buckaroo\\Magento2\\": ""
}
},
"require-dev": {
"php-webdriver/webdriver": "^1.1",
"squizlabs/php_codesniffer": "^3.7",
"phpmd/phpmd": "^2.15",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5 || ^10.5",
"magento/magento-coding-standard": "^40"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"replace": {
"buckaroo/magento2secondchance": "*"
},
"suggest": {
"buckaroo/magento2secondchance": "No longer needed – remove it"
}
}