Skip to content

Commit

Permalink
Merge pull request #6 from sreekesefingent/prestashop_target_1_4_3
Browse files Browse the repository at this point in the history
Enhanced Compatibility: Compatible with PHP 8.1 & PrestaShop 8.1.x (tested with v8.1.7) and the module has been updated to API version 84.
  • Loading branch information
jineshpv authored Nov 21, 2024
2 parents 1b23c62 + 57a9fb0 commit 893770f
Show file tree
Hide file tree
Showing 65 changed files with 164 additions and 113 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
# Changelog
All notable changes to this project will be documented in this file.

## [1.4.3] - 2024-11-21
### Changed
- Enhanced Compatibility: Compatible with PHP 8.1 & PrestaShop 8.1.x (tested with v8.1.7).
- The module has been updated to API version 84.

## [1.4.2] - 2024-07-06
### Changed
- The module has been updated to API version 81.
Expand Down
Empty file modified LICENSE.txt
100755 → 100644
Empty file.
12 changes: 8 additions & 4 deletions README.md
100755 → 100644
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ This plugin is a payment option on your PrestaShop checkout page.
The latest release of the plugin has the following system requirements:

- PHP version 8.1 or higher is mandatory.
- PrestaShop version 8.0.4 or later is required. However, we strongly recommend using the latest available version of PrestaShop for optimal performance.
- PrestaShop version 8.1.x (tested with v8.1.7) is required.

## Documentation

Expand Down Expand Up @@ -46,6 +46,10 @@ Version v1.4.1
Version v1.4.2
- The module has been updated to API version 81.

Version v1.4.3
- Enhanced Compatibility: Compatible with PHP 8.1 & PrestaShop 8.1.x (tested with v8.1.7).
- The module has been updated to API version 84.

## Feature Support

PrestaShop Mastercard Payment Gateway Service module supports the following list of features:
Expand Down Expand Up @@ -123,13 +127,13 @@ Capture Payment is used for processing transactions and transferring funds into
- Under the Order detail page, when clicking on the “Capture Payment” button it will process transactions and the amount of the order will be transferred to the merchant's account.
- After clicking on the “Capture Payment” button, the gateway will capture the transaction and then you will see a success message. The order status will also change to “Payment Accept”.

![Order detail payment](docs/images/order-detail-payment.png "Order detail payment")
![Order detail payment](docs/images/capture-payment.png "capture payment")

### Void Transaction

Void Transaction is used to cancel the order. By clicking on the “Void Transaction” button, the order will be canceled automatically and the amount of the order will be credited to the user’s card (if payment has been captured).
Void Transaction is used to cancel the order. By clicking on the “Void” button, the order will be canceled automatically and the amount of the order will be credited to the user’s card (if payment has been captured).

![Void transaction](docs/images/void-transaction.png "Void transaction")
![Void transaction](docs/images/void.png "Void transaction")

### Refund Payment

Expand Down
Empty file modified RELEASE.md
100755 → 100644
Empty file.
5 changes: 3 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mastercard/mastercard",
"version": "1.4.2",
"version": "1.4.3",
"description": "Mastercard Payment Gateway Services module for Prestashop",
"type": "prestashop-module",
"require": {
Expand All @@ -11,7 +11,8 @@
"psr/log":"^2.0",
"psr/http-factory": "^1.0",
"psr/http-message": "^2.0",
"nyholm/psr7": "^1.8"
"nyholm/psr7": "^1.8",
"symfony/options-resolver": "^5.0"
},
"license": "Apache-2.0",
"minimum-stability": "alpha",
Expand Down
Loading

0 comments on commit 893770f

Please sign in to comment.