-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
57 lines (57 loc) · 1.59 KB
/
composer.json
File metadata and controls
57 lines (57 loc) · 1.59 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
{
"name": "unzerdev/magento2",
"description": "This extension for Magento 2 provides a direct integration of the Unzer payment types to your Magento 2 shop via the Unzer Payment API (PAPI).",
"type": "magento2-module",
"version": "4.0.5",
"license": "Apache-2.0",
"require": {
"php": "~7.4.0|~8.1.0|~8.2.0|~8.3.0|~8.4.0",
"unzerdev/php-sdk": "^3.13.1",
"ext-json": "*",
"magento/framework": "*",
"magento/module-backend": "*",
"magento/module-checkout": "*",
"magento/module-config": "*",
"magento/module-customer": "*",
"magento/module-payment": "*",
"magento/module-quote": "*",
"magento/module-sales": "*",
"magento/module-store": "*",
"magento/module-ui": "*",
"magento/module-vault": "*"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^9.6"
},
"support": {
"email": "support@unzer.com"
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"Unzer\\PAPI\\": ""
}
},
"homepage": "https://dev.unzer.com/user-guide-magento-2-unzer_papi-module",
"keywords": [
"magento",
"magento2",
"payment",
"php",
"payment-gateway"
],
"repositories": {
"magento": {
"type": "composer",
"url": "https://repo.magento.com"
}
},
"config": {
"allow-plugins": {
"magento/composer-dependency-version-audit-plugin": true
}
}
}