Note: Replace Feexpay
LOUGBEGNON
https://feexpay.me
contact@feexpay.me
Feexpay
FeexpayPhp
Php sdk of Feexpay - Online payment solution by credit card and mobile money
with their correct values in README.md, CHANGELOG.md, CONTRIBUTING.md, LICENSE.md and composer.json files, then delete this line. You can run $ php prefill.php
in the command line to make all replacements at once. Delete the file prefill.php as well.
This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
This guide explains how to use the Feexpay PHP SDK to easily integrate mobile and card payment methods into your PHP or Laravel application. Follow these steps to get started:
-
Install a local server like Xampp or Wamp etc ...
-
Install Composer if not already done.
-
Check that Composer is installed by running the following command:
composer --version
-
Create your PHP project.
-
Download the Git repository by opening your terminal and running the following command:
git clone https://github.com/foxinnovs/feexpay-sdk-php.git
-
Create a PHP file, for example,
index.php
. -
Use the SDK methods in your PHP file:
<?php include 'src/FeexpayClass.php'; $skeleton = new Feexpay\FeexpayPhp\FeexpayClass("shop's id", "token key API", "callback_url", "mode (LIVE, SANDBOX)"); // Using the mobile network payment method (MTN, MOOV) $response = $skeleton->paiementLocal("amount", "phone_number", "network (MTN, MOOV)", "Jon Doe", "jondoe@gmail.com"); $status = $skeleton->getPaiementStatus($response); var_dump($status); // Using the card payment method (VISA, MASTERCARD) $responseCard = $skeleton->paiementCard("amount", "phoneNumber(66000000)", "typeCard (VISA, MASTERCARD)", "Jon", "Doe", "jondoe@gmail.com", "country(Benin)", "address(Cotonou)", "district(Littoral)", "currency(XOF, USD, EUR)"); $redirectUrl = $responseCard["url"]; header("Location: $redirectUrl"); exit(); ?>
-
You can also integrate a payment button in your PHP page:
<?php include 'src/FeexpayClass.php'; $price = 50; $id = "shop's id"; $token = "token key API"; $callback_url = 'https://www.google.com'; $mode = 'LIVE'; $feexpayclass = new Feexpay\FeexpayPhp\FeexpayClass($id, $token, $callback_url, $mode); $result = $feexpayclass->init($price, "button_payee"); ?> <div id='button_payee'></div>
-
In a Laravel project, run the following command to install the Feexpay package:
composer require feexpayme/feexpay-sdk-php
-
Create a route in your
web.php
file:Route::controller(YourController::class)->group(function () { Route::get('feexpay', 'feexpay')->name('feexpay'); });
-
Create a controller, for example,
YourController.php
, and use the Feexpay SDK inside this controller to handle payments:<?php namespace App\Http\Controllers; use Feexpay\FeexpayPhp\FeexpayClass; use Illuminate\Http\Request; class YourController extends Controller { public function feexpay() { // Using the card payment method (VISA, MASTERCARD) $skeleton = new FeexpayClass("shop's id", "token key API", "callback_url", "mode (LIVE, SANDBOX)"); $responseCard = $skeleton->paiementCard("amount", "phoneNumber(66000000)", "typeCard (VISA, MASTERCARD)", "Jon", "Doe", "jondoe@gmail.com", "country(Benin)", "address(Cotonou)", "district(Littoral)", "currency(XOF, USD, EUR)"); $redirectUrl = $responseCard["url"]; return redirect()->away($redirectUrl); // Using the mobile network payment method (MTN, MOOV) $skeleton = new FeexpayClass("shop's id", "token key API", "callback_url", "mode (LIVE, SANDBOX)"); $response = $skeleton->paiementCard("amount", "phone_number", "network (MTN, MOOV)", "Jon Doe","jondoe@gmail.com"); $status = $skeleton->getPaiementStatus($response); var_dump($status); } }
<?php
namespace App\Http\Controllers;
use Feexpay\FeexpayPhp\FeexpayClass;
use Illuminate\Http\Request;
class YourController extends Controller
{
public function feexpay()
{
// Using the card payment method (VISA, MASTERCARD)
$skeleton = new FeexpayClass("shop's id", "token key API", "callback_url", "mode (LIVE, SANDBOX)");
$responseCard = $skeleton->paiementCard("amount", "phoneNumber(66000000)", "typeCard (VISA, MASTERCARD)", "Jon", "Doe", "jondoe@gmail.com", "country(Benin)", "address(Cotonou)", "district(Littoral)", "currency(XOF, USD, EUR)");
// Display response structure for debugging purposes
var_dump($responseCard);
// Check for the presence of the "url" key
if (isset($responseCard["url"])) {
$redirectUrl = $responseCard["url"];
return redirect()->away($redirectUrl);
} else {
// Handle the case where "url" is not present in the response
return response("Erreur de réponse de paiement")->setStatusCode(500);
}
}
}
- Integrate the Feexpay button in a view, for example,
welcome.blade.php
:
creating a route:
Route::controller(YourController::class)->group(function () {
Route::get('payment', 'payment')->name('payment') ;
}) ;
create a controller, example YourController.php
here's the code:
<?php
namespace App\Http\Controllers;
use Feexpay\FeexpayPhp\FeexpayClass;
use Illuminate\Http\Request;
class YourController extends Controller
{
public function payment()
{
$data['price'] = $price = 50;
$data['id'] = $id= "shop's id";
$data['token'] = $token= "token key API";
$data['callback_url'] = $callback_url= 'https://www.google.com';
$data['mode'] = $mode='LIVE';
$data['feexpayclass'] = $feexpayclass = new FeexpayClass($id, $token, $callback_url, $mode);
$data['result'] = $result = $feexpayclass->init($price, "button_payee");
return view('welcome', $data);
}
}
make sure you have your views file for our example is welcome.blade.php
here's the code:
<div id='button_payee'></div>
- You can now access the URL defined in the route to perform payments using Feexpay.
Note: Replace Feexpay
LOUGBEGNON
https://feexpay.me
contact@feexpay.me
Feexpay
FeexpayPhp
Php sdk of Feexpay - Online payment solution by credit card and mobile money
with their correct values in README.md, CHANGELOG.md, CONTRIBUTING.md, LICENSE.md and composer.json files, then delete this line. You can run $ php prefill.php
in the command line to make all replacements at once. Delete the file prefill.php as well.
This is where your description should go. Try and limit it to a paragraph or two, and maybe throw in a mention of what PSRs you support to avoid any confusion with users and contributors.
Make sure to adapt values like "shop's id", "token key API", addresses, amounts, and other details according to your own configuration and needs.