Skip to content

Commit

Permalink
1.5.17
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitrii-fediuk committed Aug 18, 2017
1 parent 62f75ea commit ae519bf
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 13 deletions.
30 changes: 19 additions & 11 deletions Charge.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,25 @@
* @method Settings s()
*/
final class Charge extends \Df\PaypalClone\Charge {
/**
* 2017-08-19
* 2016-08-26
* «5.1.1.1 Merchant ID».
* Mandatory
* Alpha-numeric, length 7
* «The Merchant ID field, “EPS_MERCHANT”, is mandatory.
* It is the SecurePay account to process payments.
* SecurePay Customer Support will supply your Merchant ID when your account is activated.
* The Merchant ID will be of the format “ABC0010”,
* where ABC is your unique three-letter account code,
* also used for logging in to the SecurePay Merchant Log In.»
* @override
* @see \Df\PaypalClone\Charge::k_MerchantId()
* @used-by \Df\PaypalClone\Charge::p()
* @return string
*/
protected function k_MerchantId() {return 'EPS_MERCHANT';}

/**
* 2016-08-29
* 2016-08-26
Expand Down Expand Up @@ -133,17 +152,6 @@ protected function pCharge() {$s = $this->s(); return [
// «Payee’s last name»
,'EPS_LASTNAME' => $this->customerNameL()
// 2016-08-26
// «5.1.1.1 Merchant ID».
// Mandatory
// Alpha-numeric, length 7
// «The Merchant ID field, “EPS_MERCHANT”, is mandatory.
// It is the SecurePay account to process payments.
// SecurePay Customer Support will supply your Merchant ID when your account is activated.
// The Merchant ID will be of the format “ABC0010”,
// where ABC is your unique three-letter account code,
// also used for logging in to the SecurePay Merchant Log In.»
,'EPS_MERCHANT' => $s->merchantID()
// 2016-08-26
// Mandatory when EPS_TXNTYPE includes 3D Secure
// String, length less than 20
// «Your online merchant number specified by your bank
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mage2pro/securepay"
,"version": "1.5.16"
,"version": "1.5.17"
,"description": "The «SecurePay» payment extension for Magento 2."
,"type": "magento2-module"
,"homepage": "https://mage2.pro/c/extensions/securepay"
Expand All @@ -11,7 +11,7 @@
"homepage": "https://mage2.pro/users/dmitry_fedyuk",
"role": "Developer"
}]
,"require": {"mage2pro/core": ">=2.10.16"}
,"require": {"mage2pro/core": ">=2.10.32"}
,"autoload": {"files": ["registration.php"], "psr-4": {"Dfe\\SecurePay\\": ""}}
,"keywords": [
"3D Secure"
Expand Down

0 comments on commit ae519bf

Please sign in to comment.