-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathcomposer.json
38 lines (38 loc) · 960 Bytes
/
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
{
"name": "hipay/hipay-fullservice-sdk-magento2",
"description": "The HiPay Fullservice module for Magento 2 is a PHP module which allows you to accept payments in your Magento 2 online store.",
"type": "magento2-module",
"version": "1.26.0",
"license": [
"Apache-2.0"
],
"require": {
"hipay/hipay-fullservice-sdk-php": "^2.19.1",
"giggsey/libphonenumber-for-php": "^8.12.0"
},
"scripts": {
"post-install-cmd": [
"if [ -d ../../../dev/tests/functional/test/app/ ]; then cp -r tests/functional/tests/app/* ../../../dev/tests/functional/test/app/ ; fi"
]
},
"autoload": {
"files": [
"registration.php"
],
"psr-4": {
"HiPay\\FullserviceMagento\\": ""
}
},
"autoload-dev": {
"psr-4": {
"HiPay\\FullserviceMagento\\Test\\": "tests/functional/tests/app/HiPay/"
}
},
"archive": {
"exclude": [
"/*",
"!/src"
]
},
"minimum-stability": "stable"
}