-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
85 lines (85 loc) · 2.25 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "pay-now/paynow-magento2",
"description": "Module for Paynow payments",
"type": "magento2-module",
"version": "1.5.6",
"license": "MIT",
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"laminas/laminas-dependency-plugin": true,
"magento/*": true,
"php-http/discovery": true,
"magento/composer-root-update-plugin": true,
"magento/composer-dependency-version-audit-plugin": true,
"magento/inventory-composer-installer": true,
"magento/magento-composer-installer": true
},
"preferred-install": "dist",
"sort-packages": true
},
"keywords": [
"paynow",
"mbank",
"payments gateway",
"paynow magento",
"paynow magento2"
],
"authors": [
{
"name": "mElements S.A.",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": ">=7.2",
"ext-json": "*",
"firebase/php-jwt": "^6.10",
"magento/framework": ">=101",
"magento/module-checkout": ">=100.2",
"magento/module-payment": ">=100.2",
"magento/module-sales": ">=101",
"nyholm/psr7": "^1.2",
"paragonie/sodium_compat": "^1.20",
"pay-now/paynow-php-sdk": "^2.4.1",
"php-http/curl-client": "^2.1"
},
"require-dev": {
"magento/magento-coding-standard": "2.*",
"phpunit/phpunit": "^8.5.36",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Paynow\\PaymentGateway\\": ""
}
},
"repositories": [
{
"type": "composer",
"url": "https://repo.magento.com/"
}
],
"scripts": {
"test": [
"Composer\\Config::disableProcessTimeout",
"vendor/bin/phpunit -c Test/phpunit.xml"
],
"cs": [
"vendor/bin/phpcs --standard=Magento2 --ignore=*/vendor/*,*/Test/* ."
],
"cs-fix": [
"php vendor/bin/phpcbf --standard=Magento2 --ignore=*/vendor/* ."
],
"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/)"
]
}
}