-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·49 lines (49 loc) · 1.4 KB
/
composer.json
File metadata and controls
executable file
·49 lines (49 loc) · 1.4 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
{
"name": "tpay/magento2",
"description": "Tpay payments module",
"license": "MIT",
"type": "magento2-module",
"authors": [
{
"name": "tpay.com",
"homepage": "https://tpay.com/"
}
],
"require": {
"php": ">=7.1",
"ext-json": "*",
"composer-runtime-api": "^2.0",
"tpay-com/tpay-openapi-php": "^2.4.2",
"tpay-com/tpay-php": "^2.4.7",
"psr/simple-cache": "^1"
},
"suggest": {
"tpay-com/magento2-graphql": "Additional GraphQL endpoints to use in PWA checkout applications",
"tpay-com/module-hyva-checkout": "Compatybility module for Hyvä Checkout"
},
"autoload": {
"psr-4": {
"Tpay\\Magento2\\": ""
},
"files": [
"registration.php"
]
},
"require-dev": {
"squizlabs/php_codesniffer": "*",
"tpay-com/coding-standards": "^1.1",
"phpstan/phpstan": "^2.1",
"php-cs-fixer/shim": "^3.92",
"vimeo/psalm": "^5.15.0",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"scripts": {
"cs:lint": "./vendor/bin/parallel-lint .",
"cs:fixer": "./vendor/bin/php-cs-fixer fix -vvv --dry-run --diff",
"cs:phpstan": "./vendor/bin/phpstan",
"cs:psalm": "./vendor/bin/psalm",
"cs:sniffer": "./vendor/bin/phpcs --standard=.php-cs.xml -n"
},
"config": {
}
}