-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
50 lines (50 loc) · 1.32 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
{
"name": "swedbank-pay/magento2-core",
"type": "magento2-module",
"description": "Core module for SwedbankPay Payments in 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": {
"swedbank-pay/swedbank-pay-sdk-php": "~4.0",
"php": "~7.0.13||~7.1.0||~7.2.0||~7.3.0||~7.4.0",
"magento/framework": "^100.1||^101.0||^102.0||^103.0"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"autoload": {
"files" : [
"registration.php"
],
"psr-4": {
"SwedbankPay\\Core\\": ""
}
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"magento/magento-coding-standard": "*",
"squizlabs/php_codesniffer": "*"
},
"scripts": {
"test": "vendor/bin/phpunit ./Test/",
"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/)"
]
}
}