Version Notes
Fixes compatibility issues with older PHP versions
Download this release
Release Info
Developer | Heartland Payment Systems |
Extension | Hps_Securesubmit |
Version | 1.0.3 |
Comparing to | |
See all releases |
Code changes from version 1.0.2 to 1.0.3
lib/SecureSubmit/services/HpsBatchService.php
CHANGED
@@ -16,10 +16,10 @@ class HpsBatchService extends HpsService{
|
|
16 |
|
17 |
$batchClose = $response->Transaction->BatchClose;
|
18 |
$result = new HpsBatch();
|
19 |
-
$result->id = (isset($batchClose->BatchId) ? $batchClose->BatchId : null);
|
20 |
-
$result->sequenceNumber = (isset($batchClose->BatchSeqNbr) ? $batchClose->BatchSeqNbr : null);
|
21 |
-
$result->totalAmount = (isset($batchClose->TotalAmt) ? $batchClose->TotalAmt : null);
|
22 |
-
$result->transactionCount = (isset($batchClose->TxnCnt) ? $batchClose->TxnCnt : null);
|
23 |
|
24 |
return $result;
|
25 |
}
|
16 |
|
17 |
$batchClose = $response->Transaction->BatchClose;
|
18 |
$result = new HpsBatch();
|
19 |
+
$result->id = (isset($batchClose->BatchId) ? (string)$batchClose->BatchId : null);
|
20 |
+
$result->sequenceNumber = (isset($batchClose->BatchSeqNbr) ? (string)$batchClose->BatchSeqNbr : null);
|
21 |
+
$result->totalAmount = (isset($batchClose->TotalAmt) ? (string)$batchClose->TotalAmt : null);
|
22 |
+
$result->transactionCount = (isset($batchClose->TxnCnt) ? (string)$batchClose->TxnCnt : null);
|
23 |
|
24 |
return $result;
|
25 |
}
|
lib/SecureSubmit/services/HpsChargeService.php
CHANGED
@@ -507,23 +507,23 @@ class HpsChargeService extends HpsService{
|
|
507 |
|
508 |
$result = new HpsAuthorization($this->hydrateTransactionHeader($header));
|
509 |
$result->transactionId = $header->GatewayTxnId;
|
510 |
-
$result->authorizedAmount = (isset($authResponse->AuthAmt) ? $authResponse->AuthAmt : null);
|
511 |
-
$result->authorizationCode = (isset($authResponse->AuthCode) ? $authResponse->AuthCode : null);
|
512 |
-
$result->avsResultCode = (isset($authResponse->AVSRsltCode) ? $authResponse->AVSRsltCode : null);
|
513 |
-
$result->avsResultText = (isset($authResponse->AVSRsltText) ? $authResponse->AVSRsltText : null);
|
514 |
-
$result->cardType = (isset($authResponse->CardType) ? $authResponse->CardType : null);
|
515 |
-
$result->cpcIndicator = (isset($authResponse->CPCInd) ? $authResponse->CPCInd : null);
|
516 |
-
$result->cvvResultCode = (isset($authResponse->CVVRsltCode) ? $authResponse->CVVRsltCode : null);
|
517 |
-
$result->cvvResultText = (isset($authResponse->CVVRsltText) ? $authResponse->CVVRsltText : null);
|
518 |
-
$result->referenceNumber = (isset($authResponse->RefNbr) ? $authResponse->RefNbr : null);
|
519 |
-
$result->responseCode = (isset($authResponse->RspCode) ? $authResponse->RspCode : null);
|
520 |
-
$result->responseText = (isset($authResponse->RspText) ? $authResponse->RspText : null);
|
521 |
|
522 |
if(isset($header->TokenData) && is_object($header->TokenData)){
|
523 |
$result->tokenData = new HpsTokenData();
|
524 |
-
$result->tokenData->responseCode = $header->TokenData->TokenRspCode;
|
525 |
-
$result->tokenData->responseMessage = $header->TokenData->TokenRspMsg;
|
526 |
-
$result->tokenData->tokenValue = $header->TokenData->TokenValue;
|
527 |
}
|
528 |
|
529 |
return $result;
|
@@ -540,23 +540,23 @@ class HpsChargeService extends HpsService{
|
|
540 |
|
541 |
$result = new HpsCharge($this->hydrateTransactionHeader($header));
|
542 |
$result->transactionId = $header->GatewayTxnId;
|
543 |
-
$result->authorizedAmount = (isset($creditSaleRsp->AuthAmt) ? $creditSaleRsp->AuthAmt : null);
|
544 |
-
$result->authorizationCode = (isset($creditSaleRsp->AuthCode) ? $creditSaleRsp->AuthCode : null);
|
545 |
-
$result->avsResultCode = (isset($creditSaleRsp->AVSRsltCode) ? $creditSaleRsp->AVSRsltCode : null);
|
546 |
-
$result->avsResultText = (isset($creditSaleRsp->AVSRsltText) ? $creditSaleRsp->AVSRsltText : null);
|
547 |
-
$result->cardType = (isset($creditSaleRsp->CardType) ? $creditSaleRsp->CardType : null);
|
548 |
-
$result->cpcIndicator = (isset($creditSaleRsp->CPCInd) ? $creditSaleRsp->CPCInd : null);
|
549 |
-
$result->cvvResultCode = (isset($creditSaleRsp->CVVRsltCode) ? $creditSaleRsp->CVVRsltCode : null);
|
550 |
-
$result->cvvResultText = (isset($creditSaleRsp->CVVRsltText) ? $creditSaleRsp->CVVRsltText : null);
|
551 |
-
$result->referenceNumber = (isset($creditSaleRsp->RefNbr) ? $creditSaleRsp->RefNbr : null);
|
552 |
-
$result->responseCode = (isset($creditSaleRsp->RspCode) ? $creditSaleRsp->RspCode : null);
|
553 |
-
$result->responseText = (isset($creditSaleRsp->RspText) ? $creditSaleRsp->RspText : null);
|
554 |
|
555 |
if(isset($header->TokenData) && is_object($header->TokenData)){
|
556 |
$result->tokenData = new HpsTokenData();
|
557 |
-
$result->tokenData->responseCode = $header->TokenData->TokenRspCode;
|
558 |
-
$result->tokenData->responseMessage = $header->TokenData->TokenRspMsg;
|
559 |
-
$result->tokenData->tokenValue = $header->TokenData->TokenValue;
|
560 |
}
|
561 |
|
562 |
return $result;
|
@@ -571,7 +571,7 @@ class HpsChargeService extends HpsService{
|
|
571 |
}
|
572 |
|
573 |
$result = new HpsRefund($this->hydrateTransactionHeader($header));
|
574 |
-
$result->transactionId = $header->GatewayTxnId;
|
575 |
$result->responseCode = "00";
|
576 |
$result->responseText = "";
|
577 |
|
@@ -588,15 +588,15 @@ class HpsChargeService extends HpsService{
|
|
588 |
|
589 |
$reversal = (isset($response->Transaction->CreditReversal) ? $response->Transaction->CreditReversal : null);
|
590 |
$result = new HpsReversal($this->hydrateTransactionHeader($header));
|
591 |
-
$result->transactionId = (isset($header->GatewayTxnId) ? $header->GatewayTxnId : null);
|
592 |
-
$result->avsResultCode = (isset($reversal->AVSRsltCode) ? $reversal->AVSRsltCode : null);
|
593 |
-
$result->avsResultText = (isset($reversal->AVSRsltText) ? $reversal->AVSRsltText : null);
|
594 |
-
$result->cpcIndicator = (isset($reversal->CPCInd) ? $reversal->CPCInd : null);
|
595 |
-
$result->cvvResultCode = (isset($reversal->CVVRsltCode) ? $reversal->CVVRsltCode : null);
|
596 |
-
$result->cvvResultText = (isset($reversal->CVVRsltText) ? $reversal->CVVRsltText : null);
|
597 |
-
$result->referenceNumber = (isset($reversal->RefNbr) ? $reversal->RefNbr : null);
|
598 |
-
$result->responseCode = (isset($reversal->RspCode) ? $reversal->RspCode : null);
|
599 |
-
$result->responseText = (isset($reversal->RspText) ? $reversal->RspText : null);
|
600 |
return $result;
|
601 |
}
|
602 |
}
|
507 |
|
508 |
$result = new HpsAuthorization($this->hydrateTransactionHeader($header));
|
509 |
$result->transactionId = $header->GatewayTxnId;
|
510 |
+
$result->authorizedAmount = (isset($authResponse->AuthAmt) ? (string)$authResponse->AuthAmt : null);
|
511 |
+
$result->authorizationCode = (isset($authResponse->AuthCode) ? (string)$authResponse->AuthCode : null);
|
512 |
+
$result->avsResultCode = (isset($authResponse->AVSRsltCode) ? (string)$authResponse->AVSRsltCode : null);
|
513 |
+
$result->avsResultText = (isset($authResponse->AVSRsltText) ? (string)$authResponse->AVSRsltText : null);
|
514 |
+
$result->cardType = (isset($authResponse->CardType) ? (string)$authResponse->CardType : null);
|
515 |
+
$result->cpcIndicator = (isset($authResponse->CPCInd) ? (string)$authResponse->CPCInd : null);
|
516 |
+
$result->cvvResultCode = (isset($authResponse->CVVRsltCode) ? (string)$authResponse->CVVRsltCode : null);
|
517 |
+
$result->cvvResultText = (isset($authResponse->CVVRsltText) ? (string)$authResponse->CVVRsltText : null);
|
518 |
+
$result->referenceNumber = (isset($authResponse->RefNbr) ? (string)$authResponse->RefNbr : null);
|
519 |
+
$result->responseCode = (isset($authResponse->RspCode) ? (string)$authResponse->RspCode : null);
|
520 |
+
$result->responseText = (isset($authResponse->RspText) ? (string)$authResponse->RspText : null);
|
521 |
|
522 |
if(isset($header->TokenData) && is_object($header->TokenData)){
|
523 |
$result->tokenData = new HpsTokenData();
|
524 |
+
$result->tokenData->responseCode = (string)$header->TokenData->TokenRspCode;
|
525 |
+
$result->tokenData->responseMessage = (string)$header->TokenData->TokenRspMsg;
|
526 |
+
$result->tokenData->tokenValue = (string)$header->TokenData->TokenValue;
|
527 |
}
|
528 |
|
529 |
return $result;
|
540 |
|
541 |
$result = new HpsCharge($this->hydrateTransactionHeader($header));
|
542 |
$result->transactionId = $header->GatewayTxnId;
|
543 |
+
$result->authorizedAmount = (isset($creditSaleRsp->AuthAmt) ? (string)$creditSaleRsp->AuthAmt : null);
|
544 |
+
$result->authorizationCode = (isset($creditSaleRsp->AuthCode) ? (string)$creditSaleRsp->AuthCode : null);
|
545 |
+
$result->avsResultCode = (isset($creditSaleRsp->AVSRsltCode) ? (string)$creditSaleRsp->AVSRsltCode : null);
|
546 |
+
$result->avsResultText = (isset($creditSaleRsp->AVSRsltText) ? (string)$creditSaleRsp->AVSRsltText : null);
|
547 |
+
$result->cardType = (isset($creditSaleRsp->CardType) ? (string)$creditSaleRsp->CardType : null);
|
548 |
+
$result->cpcIndicator = (isset($creditSaleRsp->CPCInd) ? (string)$creditSaleRsp->CPCInd : null);
|
549 |
+
$result->cvvResultCode = (isset($creditSaleRsp->CVVRsltCode) ? (string)$creditSaleRsp->CVVRsltCode : null);
|
550 |
+
$result->cvvResultText = (isset($creditSaleRsp->CVVRsltText) ? (string)$creditSaleRsp->CVVRsltText : null);
|
551 |
+
$result->referenceNumber = (isset($creditSaleRsp->RefNbr) ? (string)$creditSaleRsp->RefNbr : null);
|
552 |
+
$result->responseCode = (isset($creditSaleRsp->RspCode) ? (string)$creditSaleRsp->RspCode : null);
|
553 |
+
$result->responseText = (isset($creditSaleRsp->RspText) ? (string)$creditSaleRsp->RspText : null);
|
554 |
|
555 |
if(isset($header->TokenData) && is_object($header->TokenData)){
|
556 |
$result->tokenData = new HpsTokenData();
|
557 |
+
$result->tokenData->responseCode = (string)$header->TokenData->TokenRspCode;
|
558 |
+
$result->tokenData->responseMessage = (string)$header->TokenData->TokenRspMsg;
|
559 |
+
$result->tokenData->tokenValue = (string)$header->TokenData->TokenValue;
|
560 |
}
|
561 |
|
562 |
return $result;
|
571 |
}
|
572 |
|
573 |
$result = new HpsRefund($this->hydrateTransactionHeader($header));
|
574 |
+
$result->transactionId = (string)$header->GatewayTxnId;
|
575 |
$result->responseCode = "00";
|
576 |
$result->responseText = "";
|
577 |
|
588 |
|
589 |
$reversal = (isset($response->Transaction->CreditReversal) ? $response->Transaction->CreditReversal : null);
|
590 |
$result = new HpsReversal($this->hydrateTransactionHeader($header));
|
591 |
+
$result->transactionId = (isset($header->GatewayTxnId) ? (string)$header->GatewayTxnId : null);
|
592 |
+
$result->avsResultCode = (isset($reversal->AVSRsltCode) ? (string)$reversal->AVSRsltCode : null);
|
593 |
+
$result->avsResultText = (isset($reversal->AVSRsltText) ? (string)$reversal->AVSRsltText : null);
|
594 |
+
$result->cpcIndicator = (isset($reversal->CPCInd) ? (string)$reversal->CPCInd : null);
|
595 |
+
$result->cvvResultCode = (isset($reversal->CVVRsltCode) ? (string)$reversal->CVVRsltCode : null);
|
596 |
+
$result->cvvResultText = (isset($reversal->CVVRsltText) ? (string)$reversal->CVVRsltText : null);
|
597 |
+
$result->referenceNumber = (isset($reversal->RefNbr) ? (string)$reversal->RefNbr : null);
|
598 |
+
$result->responseCode = (isset($reversal->RspCode) ? (string)$reversal->RspCode : null);
|
599 |
+
$result->responseText = (isset($reversal->RspText) ? (string)$reversal->RspText : null);
|
600 |
return $result;
|
601 |
}
|
602 |
}
|
package.xml
CHANGED
@@ -1,20 +1,20 @@
|
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Hps_Securesubmit</name>
|
4 |
-
<version>1.0.
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://github.com/SecureSubmit/heartland-magento-extension/blob/master/LICENSE">Custom</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Take credit card payments and store cards in a PCI friendly way.</summary>
|
10 |
<description>Use Heartland Payment Systems SecureSubmit platform to charge, authorize, void, refund and partial refund credit cards.
|
11 |
-
|
12 |
Allow customers to store their cards for reduced friction at next checkout using our multi-use card tokenization process which helps reduce PCI scope.</description>
|
13 |
<notes>Fixes compatibility issues with older PHP versions</notes>
|
14 |
<authors><author><name>Heartland Payment Systems</name><user>markhagan</user><email>EntApp_DevPortal@e-hps.com</email></author></authors>
|
15 |
-
<date>2015-
|
16 |
-
<time>
|
17 |
-
<contents><target name="magecommunity"><dir name="Hps"><dir name="Securesubmit"><dir name="Block"><file name="Form.php" hash="a2e7bd1c2457cc7f12cb114b6957fefb"/><file name="Info.php" hash="3fa6b51d26f335e5ca52ee58a4399a3c"/></dir><dir name="Helper"><file name="Data.php" hash="04aeff6f94f56a49cf7527518c6212a1"/></dir><dir name="Model"><file name="Payment.php" hash="4b864227eb114e7994b011ab8f5bef1b"/><dir name="Resource"><file name="Setup.php" hash="f568cb09a6a06fc3d52f145684997416"/><dir name="Storedcard"><file name="Collection.php" hash="021134d46837197e800f54a4b90b0048"/></dir><file name="Storedcard.php" hash="f2a993c8e4236bc03b1273a33a03b5d0"/></dir><dir name="Source"><file name="Cctype.php" hash="b5f75e4a3284f79b2cfab926b193c98b"/><file name="PaymentAction.php" hash="9fc55ebaaeaccba6c40597d25a1cf9d3"/></dir><file name="Storedcard.php" hash="82c7228d2182a0cba979dc4c66a2321c"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Proxy.php" hash="97028069630bddf2b94cb1b5b0886076"/></dir></dir></dir></dir><dir name="controllers"><file name="StoredcardController.php" hash="cb9e5f7de4f52fd7a764a87f0f4699a8"/></dir><dir name="etc"><file name="config.xml" hash="b3fde0de1a10e823ce680317738fd802"/><file name="system.xml" hash="be8a2c1d74b72b45bd14eed62cc5a5e7"/></dir><dir name="sql"><dir name="hps_securesubmit_setup"><file name="install-1.0.0.php" hash="57917d8b3b29830eb1a219466df4555b"/></dir></dir><file name=".DS_Store" hash="4a6d92e7f95a9f9208c420e97eb1d4ea"/></dir></dir></target><target name="mageweb"><dir name="js"><dir name="securesubmit"><file name="admin-checkout.js" hash="1493f7f32243bad6d4facd577a375198"/><file name="secure.submit-1.0.1.js" hash="a149dc8efcfa3b507d6b2b3c784d9db3"/></dir></dir></target><target name="magelib"><dir name="SecureSubmit"><file name="Hps.php" hash="8855d261c2df0de3fe7ad8e6e59668ad"/><dir name="entities"><file name="HpsAccountVerify.php" hash="a910342548320ba07ebc4c9cda2f7c96"/><file name="HpsAddress.php" hash="2e4554c509e1de8e8cb6b0d1f599d657"/><file name="HpsAuthorization.php" hash="c46f0ad9033d3197e641c1b63bd90c7e"/><file name="HpsBatch.php" hash="46ee0321f3c9f3824fdb930736c8df7e"/><file name="HpsCardHolder.php" hash="f74938b2f53d703c777def01adde5e91"/><file name="HpsCharge.php" hash="5e94b3094db8e4f231a456cedce40985"/><file name="HpsChargeExceptions.php" hash="927b346fdac882cf97fd46b5e740e363"/><file name="HpsCreditCard.php" hash="9394bb9cd123d572d2f3376f3ce52594"/><file name="HpsItemChoiceTypePosResponseVer10Transaction.php" hash="3516bf8acb77af8d4a36d02ed991d09e"/><file name="HpsRefund.php" hash="05a8dae7c7e0faf1e67ae628eca75ea2"/><file name="HpsReportTransactionDetails.php" hash="ad0221581bf4ee24410c1ed4aac4d305"/><file name="HpsReportTransactionSummary.php" hash="1d46cce9a3274f25c092171e034479bc"/><file name="HpsReversal.php" hash="1ffd02ea88816b9a7ef5579d6219d6b8"/><file name="HpsTokenData.php" hash="bfc42e3ed9ff078598d694565d7fd3be"/><file name="HpsTransaction.php" hash="fd2bb80e28f9143bb25a3df1508fb927"/><file name="HpsTransactionDetails.php" hash="ded777de86d2b93882b2779283247b64"/><file name="HpsTransactionHeader.php" hash="114de2d7b3648143d0ef16588dfbc1af"/><file name="HpsTransactionType.php" hash="58a73f5915ff2d3f9d89935232e90796"/><file name="HpsVoid.php" hash="09902616437fd001ec17cde2b6dd9780"/></dir><dir name="infrastructure"><file name="AVSResponseCodeHandler.php" hash="b376458f6bbf14907fd96b6b17566861"/><file name="ApiConnectionException.php" hash="8b6e2d5e4d7e3368adb34e1ab20412b0"/><file name="AuthenticationException.php" hash="4685a4fa0209ed56ef0ee38868f52840"/><file name="CardException.php" hash="09bf8965e0e101dcaf560c0927812306"/><file name="Exceptions.json" hash="8f7cbcb2b18963603ee3a62d6888c36d"/><file name="HpsConfiguration.php" hash="48ed3ba9eed035d5e57d245f5174b5bc"/><file name="HpsException.php" hash="ad9fbec07d00343bb53f71a835874ea4"/><file name="HpsExceptionMapper.php" hash="5f81eacdaea3ccb756a89b04ec4c20d6"/><file name="HpsSdkCodes.php" hash="b827c7268a5743a5fd45e992eeab2450"/><file name="InvalidRequestException.php" hash="a01ca17d036ce2e6410647aa1bd25491"/></dir><dir name="services"><file name="HpsBatchService.php" hash="
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.2.0</min><max>5.5.15</max></php></required></dependencies>
|
20 |
</package>
|
1 |
<?xml version="1.0"?>
|
2 |
<package>
|
3 |
<name>Hps_Securesubmit</name>
|
4 |
+
<version>1.0.3</version>
|
5 |
<stability>stable</stability>
|
6 |
<license uri="https://github.com/SecureSubmit/heartland-magento-extension/blob/master/LICENSE">Custom</license>
|
7 |
<channel>community</channel>
|
8 |
<extends/>
|
9 |
<summary>Take credit card payments and store cards in a PCI friendly way.</summary>
|
10 |
<description>Use Heartland Payment Systems SecureSubmit platform to charge, authorize, void, refund and partial refund credit cards.
|
11 |
+

|
12 |
Allow customers to store their cards for reduced friction at next checkout using our multi-use card tokenization process which helps reduce PCI scope.</description>
|
13 |
<notes>Fixes compatibility issues with older PHP versions</notes>
|
14 |
<authors><author><name>Heartland Payment Systems</name><user>markhagan</user><email>EntApp_DevPortal@e-hps.com</email></author></authors>
|
15 |
+
<date>2015-03-26</date>
|
16 |
+
<time>19:54:53</time>
|
17 |
+
<contents><target name="magecommunity"><dir name="Hps"><dir name="Securesubmit"><dir name="Block"><file name="Form.php" hash="a2e7bd1c2457cc7f12cb114b6957fefb"/><file name="Info.php" hash="3fa6b51d26f335e5ca52ee58a4399a3c"/></dir><dir name="Helper"><file name="Data.php" hash="04aeff6f94f56a49cf7527518c6212a1"/></dir><dir name="Model"><file name="Payment.php" hash="4b864227eb114e7994b011ab8f5bef1b"/><dir name="Resource"><file name="Setup.php" hash="f568cb09a6a06fc3d52f145684997416"/><dir name="Storedcard"><file name="Collection.php" hash="021134d46837197e800f54a4b90b0048"/></dir><file name="Storedcard.php" hash="f2a993c8e4236bc03b1273a33a03b5d0"/></dir><dir name="Source"><file name="Cctype.php" hash="b5f75e4a3284f79b2cfab926b193c98b"/><file name="PaymentAction.php" hash="9fc55ebaaeaccba6c40597d25a1cf9d3"/></dir><file name="Storedcard.php" hash="82c7228d2182a0cba979dc4c66a2321c"/><dir name="System"><dir name="Config"><dir name="Backend"><file name="Proxy.php" hash="97028069630bddf2b94cb1b5b0886076"/></dir></dir></dir></dir><dir name="controllers"><file name="StoredcardController.php" hash="cb9e5f7de4f52fd7a764a87f0f4699a8"/></dir><dir name="etc"><file name="config.xml" hash="b3fde0de1a10e823ce680317738fd802"/><file name="system.xml" hash="be8a2c1d74b72b45bd14eed62cc5a5e7"/></dir><dir name="sql"><dir name="hps_securesubmit_setup"><file name="install-1.0.0.php" hash="57917d8b3b29830eb1a219466df4555b"/></dir></dir><file name=".DS_Store" hash="4a6d92e7f95a9f9208c420e97eb1d4ea"/></dir></dir></target><target name="mageweb"><dir name="js"><dir name="securesubmit"><file name="admin-checkout.js" hash="1493f7f32243bad6d4facd577a375198"/><file name="secure.submit-1.0.1.js" hash="a149dc8efcfa3b507d6b2b3c784d9db3"/></dir></dir></target><target name="magelib"><dir name="SecureSubmit"><file name="Hps.php" hash="8855d261c2df0de3fe7ad8e6e59668ad"/><dir name="entities"><file name="HpsAccountVerify.php" hash="a910342548320ba07ebc4c9cda2f7c96"/><file name="HpsAddress.php" hash="2e4554c509e1de8e8cb6b0d1f599d657"/><file name="HpsAuthorization.php" hash="c46f0ad9033d3197e641c1b63bd90c7e"/><file name="HpsBatch.php" hash="46ee0321f3c9f3824fdb930736c8df7e"/><file name="HpsCardHolder.php" hash="f74938b2f53d703c777def01adde5e91"/><file name="HpsCharge.php" hash="5e94b3094db8e4f231a456cedce40985"/><file name="HpsChargeExceptions.php" hash="927b346fdac882cf97fd46b5e740e363"/><file name="HpsCreditCard.php" hash="9394bb9cd123d572d2f3376f3ce52594"/><file name="HpsItemChoiceTypePosResponseVer10Transaction.php" hash="3516bf8acb77af8d4a36d02ed991d09e"/><file name="HpsRefund.php" hash="05a8dae7c7e0faf1e67ae628eca75ea2"/><file name="HpsReportTransactionDetails.php" hash="ad0221581bf4ee24410c1ed4aac4d305"/><file name="HpsReportTransactionSummary.php" hash="1d46cce9a3274f25c092171e034479bc"/><file name="HpsReversal.php" hash="1ffd02ea88816b9a7ef5579d6219d6b8"/><file name="HpsTokenData.php" hash="bfc42e3ed9ff078598d694565d7fd3be"/><file name="HpsTransaction.php" hash="fd2bb80e28f9143bb25a3df1508fb927"/><file name="HpsTransactionDetails.php" hash="ded777de86d2b93882b2779283247b64"/><file name="HpsTransactionHeader.php" hash="114de2d7b3648143d0ef16588dfbc1af"/><file name="HpsTransactionType.php" hash="58a73f5915ff2d3f9d89935232e90796"/><file name="HpsVoid.php" hash="09902616437fd001ec17cde2b6dd9780"/></dir><dir name="infrastructure"><file name="AVSResponseCodeHandler.php" hash="b376458f6bbf14907fd96b6b17566861"/><file name="ApiConnectionException.php" hash="8b6e2d5e4d7e3368adb34e1ab20412b0"/><file name="AuthenticationException.php" hash="4685a4fa0209ed56ef0ee38868f52840"/><file name="CardException.php" hash="09bf8965e0e101dcaf560c0927812306"/><file name="Exceptions.json" hash="8f7cbcb2b18963603ee3a62d6888c36d"/><file name="HpsConfiguration.php" hash="48ed3ba9eed035d5e57d245f5174b5bc"/><file name="HpsException.php" hash="ad9fbec07d00343bb53f71a835874ea4"/><file name="HpsExceptionMapper.php" hash="5f81eacdaea3ccb756a89b04ec4c20d6"/><file name="HpsSdkCodes.php" hash="b827c7268a5743a5fd45e992eeab2450"/><file name="InvalidRequestException.php" hash="a01ca17d036ce2e6410647aa1bd25491"/></dir><dir name="services"><file name="HpsBatchService.php" hash="b33260d307dd557d6fd287b32638c1aa"/><file name="HpsChargeService.php" hash="e6389ac7ada0e0bd63a87b4b0c81f710"/><file name="HpsService.php" hash="52aefe6d72b1e4118fdd8ec04b75e28c"/><file name="HpsTokenService.php" hash="bfdee5e18ebdc2133f3512040e0da766"/></dir></dir></target><target name="magedesign"><dir name="adminhtml"><dir name="default"><dir name="default"><dir name="layout"><file name="securesubmit.xml" hash="cc04e952cc17ea3462931a9e7a655316"/></dir><dir name="template"><dir name="securesubmit"><file name="form.phtml" hash="b6329408b11e9e979494a923e639f6cf"/></dir></dir></dir></dir></dir><dir name="frontend"><dir name="base"><dir name="default"><dir name="layout"><file name="securesubmit.xml" hash="8aca5736bbba6ec8341cf9510c0ea5ab"/></dir><dir name="template"><dir name="securesubmit"><file name="form.phtml" hash="ae6221e7f9961b673470c265cdbb6927"/><file name="storedcards.phtml" hash="3412f0560d4ba696dc9bc3ed996e0577"/></dir></dir></dir></dir></dir></target><target name="mageetc"><dir name="modules"><file name="Hps_Securesubmit.xml" hash="d5aed3f48a45f8e611b68d1e6f34c959"/></dir></target></contents>
|
18 |
<compatible/>
|
19 |
<dependencies><required><php><min>5.2.0</min><max>5.5.15</max></php></required></dependencies>
|
20 |
</package>
|