-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
54 lines (54 loc) · 1.39 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
49
50
51
52
53
54
{
"name": "swedbank-pay/magento2-payments",
"type": "magento2-module",
"description": "A Swedbank Pay Payments module for Magento 2",
"license": "Apache-2.0",
"authors": [
{
"name": "Sammy Nordström",
"email": "[email protected]"
},
{
"name": "Md Shahriar Siraj",
"email": "[email protected]"
}
],
"keywords": ["magento", "payment", "swedbank-pay"],
"require": {
"magento/framework": "^100.1||^101.0||^102.0||^103.0",
"magento/module-checkout": "^100.0",
"swedbank-pay/magento2-core": "^1.5",
"ext-json": "*",
"ext-curl": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "^3.4",
"phpmd/phpmd": "~2.10.0",
"magento/magento-coding-standard": "*"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"autoload": {
"files" : [
"registration.php"
],
"psr-4": {
"SwedbankPay\\Payments\\": ""
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"post-install-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
],
"post-update-cmd": [
"([ $COMPOSER_DEV_MODE -eq 0 ] || vendor/bin/phpcs --config-set installed_paths ../../magento/magento-coding-standard/)"
]
}
}