Skip to content

Commit eb2bcd5

Browse files
Merge pull request #105 from AbdullahAldakheel/master
feat(payment): Support for Apple Pay on web
2 parents 291432c + c084c59 commit eb2bcd5

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## 5.2.0 - 2025-07-07
9+
10+
### Added
11+
12+
- Apple Pay: Support Apple Pay on the web.
13+
814
## 5.1.4 - 2025-05-27
915

1016
### Fixed

Helper/MoyasarHelper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
class MoyasarHelper extends AbstractHelper
2323
{
24-
const VERSION = '5.1.4';
24+
const VERSION = '5.2.0';
2525

2626
const XML_PATH_CREDIT_CARD_IS_ACTIVE = 'payment/moyasar_payments/active';
2727
const XML_PATH_APPLE_PAY_IS_ACTIVE = 'payment/moyasar_payments_apple_pay/active';

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "moyasar-fintech/magento2",
33
"description": "Magento 2 payment module that integrate with https:\\\\moyasar.com Gateway",
44
"type": "magento2-module",
5-
"version": "5.1.4",
5+
"version": "5.2.0",
66
"authors": [
77
{
88
"email": "[email protected]",

view/frontend/layout/checkout_index_index.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" ?>
22
<page layout="1column" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
33
<head>
4-
<script src="https://applepay.cdn-apple.com/jsapi/v1/apple-pay-sdk.js" src_type="url"/>
4+
<script src="https://applepay.cdn-apple.com/jsapi/1.latest/apple-pay-sdk.js" src_type="url"/>
55
<script src="https://img.mpay.samsung.com/gsmpi/sdk/samsungpay_web_sdk.js" src_type="url"/>
66

77
</head>

0 commit comments

Comments
 (0)