-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
62 lines (62 loc) · 1.83 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
55
56
57
58
59
60
61
62
{
"name" : "swedbank-pay/magento2-checkout",
"description" : "Replaces checkout in Magento 2 with a onepage checkout with prepared Swedbank Pay elements",
"type" : "magento2-module",
"license": "Apache-2.0",
"authors" : [
{
"name" : "Anton Lantz",
"email" : "anton.lantz@visma.com"
},
{
"name" : "Sammy Nordström",
"email" : "sammy.nordstrom@visma.com"
},
{
"name": "Md Shahriar Siraj",
"email": "shahriar.siraj@visma.com"
}
],
"keywords": ["magento", "payment", "swedbank-pay"],
"require": {
"ext-curl": "*",
"ext-json": "*",
"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",
"magento/module-customer": "^100.1||^101.0||^102.0||^103.0",
"magento/module-sales": "^100.1||^101.0||^102.0||^103.0",
"magento/module-tax": "^100.0",
"swedbank-pay/magento2-core": "^1.5"
},
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com/"
}
},
"autoload" : {
"files" : [
"registration.php"
],
"psr-4" : {
"SwedbankPay\\Checkout\\" : ""
}
},
"require-dev": {
"phpunit/phpunit": "^7.5",
"squizlabs/php_codesniffer": "*",
"magento/magento-coding-standard": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "phpunit ./Test/",
"phpcs": "./vendor/bin/phpcs --standard=Magento2 --report=code --ignore=vendor/* --runtime-set ignore_warnings_on_exit true .",
"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/)"
]
}
}