forked from hipay/hipay-fullservice-sdk-magento2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
executable file
·35 lines (35 loc) · 970 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
{
"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.0.3",
"license":[
"Apache 2"
],
"require":{
"php":"~5.5.0|~5.6.0|~7.0.0",
"hipay/hipay-fullservice-sdk-php":"^1.0"
},
"extra": {
"map": [
[
"src/*",
"HiPay/FullserviceMagento"
]
]
},
"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": {
"psr-4": {
"HiPay\\": "tests/functional/tests/app/HiPay/"
}
},
"archive":{
"exclude": ["/*","!/src"]
},
"minimum-stability": "stable"
}