Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nasarbashag/yii2-nasarbashag-myfatoorah
The Yii2 package for integrating the MyFatoorah payment gateway with Yii2 is currently in progress, showcasing promising developments in the realm of online payment processing within Yii2-based applications.
https://github.com/nasarbashag/yii2-nasarbashag-myfatoorah
myfatoorah yii2 yii2-extension yii2-framework
Last synced: 16 days ago
JSON representation
The Yii2 package for integrating the MyFatoorah payment gateway with Yii2 is currently in progress, showcasing promising developments in the realm of online payment processing within Yii2-based applications.
- Host: GitHub
- URL: https://github.com/nasarbashag/yii2-nasarbashag-myfatoorah
- Owner: nasarbashag
- License: mpl-2.0
- Created: 2024-01-23T16:42:24.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-01-25T03:25:25.000Z (12 months ago)
- Last Synced: 2024-11-13T14:54:18.411Z (about 2 months ago)
- Topics: myfatoorah, yii2, yii2-extension, yii2-framework
- Language: PHP
- Homepage:
- Size: 19.5 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Yii2 MyFatoorah Payment Gateway by Nasar basha
## Introduction
Yii2 MyFatoorah is a Yii2 extension that allows you to easily integrate the MyFatoorah payment gateway into your Yii2 applications. This package simplifies the process of handling payments through MyFatoorah, providing a seamless experience for Yii2 developers.
The Yii2 package for integrating the MyFatoorah payment gateway with Yii2 is currently in progress, showcasing promising developments in the realm of online payment processing within Yii2-based applications. The package is meticulously designed to seamlessly integrate the advanced features of the MyFatoorah payment gateway into Yii2 projects, providing developers with a robust and efficient solution for handling online transactions. Despite being a work in progress, the initial stages of development have successfully addressed the crucial functionality of initiating and executing payments, ensuring that users can securely and effortlessly complete transactions through the MyFatoorah gateway within their Yii2 applications.
The package leverages Yii2's powerful framework to create a streamlined and user-friendly experience for developers, enabling them to effortlessly incorporate MyFatoorah's payment capabilities into their projects. The integration of initiation and execution of payments reflects a key milestone in the package's development, showcasing the commitment to delivering a comprehensive solution for Yii2 developers seeking to integrate the MyFatoorah payment gateway. As development progresses, users can anticipate further refinements, additional features, and an overall polished package that facilitates a seamless integration process, ultimately enhancing the overall payment processing experience within Yii2 applications.
## Installation
You can install this package using [Composer](https://getcomposer.org/):
```bash
composer require nasarbashag/yii2-nasarbashag-myfatoorah
```## Add default values in params.php
```php
....
"nbMyFatoorah" => [
'Token' => "Occaecat non adipisicing velit officia reprehenderit non non ea velit ad minim.",
'Url' => "Occaecat non adipisicing velit officia reprehenderit non non ea velit ad minim.",
'SuccessUrl' => "Occaecat non adipisicing velit officia reprehenderit non non ea velit ad minim.",
'ErrorUrl' => "Occaecat non adipisicing velit officia reprehenderit non non ea velit ad minim.",
'Currency' => "Occaecat non adipisicing velit officia reprehenderit non non ea velit ad minim.",
],
...
```## Initiate payment
```php
$initPayment = new Embed();
$result = $initPayment->initiatePayment(amount: 100.00, currentcyIso : "KWD");
// this result will all the payment methods
```