-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.7 KB
/
Copy pathcomposer.json
File metadata and controls
88 lines (88 loc) · 2.7 KB
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
86
87
88
{
"name": "comfino/magento2",
"description": "Magento 2 payment module for Comfino Payment Gateway - installment payments, buy now pay later (BNPL), and business financing solutions.",
"license": "OSL-3.0",
"type": "magento2-module",
"keywords": [
"magento2",
"payment",
"gateway",
"comfino",
"installments",
"bnpl",
"buy now pay later",
"deferred payment",
"financing",
"poland"
],
"homepage": "https://github.com/comfino/magento2",
"authors": [
{
"name": "Artur Kozubski",
"email": "a.kozubski@artkosoft.pl",
"homepage": "https://artkosoft.pl"
}
],
"support": {
"email": "pomoc@comfino.pl",
"issues": "https://github.com/comfino/magento2/issues",
"source": "https://github.com/comfino/magento2"
},
"require": {
"php": ">=8.1",
"ext-ctype": "*",
"ext-json": "*",
"ext-sodium": "*",
"ext-zlib": "*",
"comfino/sdk-for-magento2": "^1.0",
"guzzlehttp/psr7": "^2.0",
"magento/framework": "^103.0.4",
"magento/module-catalog": "^104.0.4",
"magento/module-checkout": "^100.4.4",
"magento/module-customer": "^103.0.4",
"magento/module-payment": "^100.4.4",
"magento/module-quote": "^101.2.4",
"magento/module-sales": "^103.0.4",
"magento/module-store": "^101.1.4"
},
"require-dev": {
"bitexpert/phpstan-magento": "^0.42",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"magento/magento-coding-standard": "^40.0",
"magento/marketplace-eqp": "^2.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^10.5",
"squizlabs/php_codesniffer": "^3.8"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Comfino\\ComfinoGateway\\": ""
}
},
"autoload-dev": {
"psr-4": {
"Comfino\\Tests\\": "Test/"
}
},
"config": {
"preferred-install": "dist",
"optimize-autoloader": true,
"prepend-autoloader": false,
"allow-plugins": {
"php-http/discovery": true,
"magento/composer-dependency-version-audit-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-html coverage",
"cs": "vendor/bin/phpcs",
"cs-fix": "vendor/bin/phpcbf",
"analyse": "vendor/bin/phpstan analyse --no-progress"
},
"minimum-stability": "stable"
}