forked from rvvup/magento-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.5 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
{
"name": "rvvup/module-magento-payments",
"description": "Rvvup payment gateway for Magento 2",
"type": "magento2-module",
"minimum-stability": "dev",
"require": {
"magento/module-payment": ">=100.1",
"magento/module-checkout": ">=100.1",
"magento/module-sales": ">=100.1",
"magento/framework": "^102.0 || ^103.0",
"guzzlehttp/guzzle": ">=6",
"magento/module-catalog": "^103.0 || ^104.0",
"magento/module-grouped-product": ">=100.1",
"rvvup/sdk": "0.13.8",
"ext-json": "*",
"php": "^7.3 || ^8.0"
},
"require-dev": {
"phpunit/phpunit": "^6 || ^7 || ^8 || ^9 || ^10",
"magento/magento-coding-standard": "*",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpstan/phpstan": "^0.12.2 || ^1.2",
"phpstan/extension-installer": "1.3.x",
"bitexpert/phpstan-magento": "~0.28"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Rvvup\\Payments\\": ""
}
},
"config": {
"allow-plugins": {
"laminas/laminas-dependency-plugin": true,
"magento/inventory-composer-installer": true,
"magento/magento-composer-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"magento/composer-dependency-version-audit-plugin": true,
"phpstan/extension-installer": true
}
},
"license": "MIT"
}