forked from vippsas/vipps-magento
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.22 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
{
"name": "vipps/module-payment",
"type": "magento2-module",
"description": "Vipps Payment Method",
"license": "proprietary",
"version": "1.2.11",
"require": {
"magento/framework": "101.0.*",
"magento/module-sales": "101.0.*",
"magento/module-payment": "100.2.*",
"magento/module-checkout": "100.2.*",
"psr/log": "~1.0"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Vipps\\Payment\\": ""
}
},
"extra": {
"vaimo-module-category": "Integration"
},
"scripts": {
"post-install-cmd": [
"vendor/bin/phpcs --config-set default_standard MEQP2",
"vendor/bin/phpcs --config-set installed_paths \"$(pwd)/vendor/magento/marketplace-eqp\"",
"vendor/bin/phpcs --config-set php7.0_path \"$(which php)\""
]
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"require-dev": {
"magento/marketplace-eqp": "~1.0",
"phpunit/phpunit": "~6.2.0",
"phpmd/phpmd": "@stable",
"magento/zendframework1": "~1.12.16"
}
}