-
Notifications
You must be signed in to change notification settings - Fork 15
/
composer.json
35 lines (35 loc) · 937 Bytes
/
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
{
"name": "vipps/module-payment",
"type": "magento2-module",
"description": "Vipps MobilePay Payment Module for Magento 2",
"license": "proprietary",
"require": {
"magento/framework": "101.0.*|103.0.*",
"magento/module-sales": "101.0.*|103.0.*",
"magento/module-payment": "100.2.*|100.4.*",
"magento/module-checkout": "100.2.*|100.4.*",
"psr/log": "^1.0||^2.0||^3.0"
},
"require-dev": {
"phpmd/phpmd": "@stable",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "@stable"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Vipps\\Payment\\": ""
}
},
"extra": {
"vaimo-module-category": "Integration"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
}
}