gentor / fibank by gentor

Fibank Ecomm Service for Laravel
5,714
3
2
Package Data
Maintainer Username: gentor
Maintainer Contact: evgeni.nurkov@gmail.com (Evgeni Nurkov)
Package Create Date: 2017-04-13
Package Last Update: 2023-11-03
Language: PHP
License: MIT
Last Refreshed: 2024-04-23 03:06:48
Package Statistics
Total Downloads: 5,714
Monthly Downloads: 35
Daily Downloads: 1
Total Stars: 3
Total Watchers: 2
Total Forks: 1
Total Open Issues: 0

Fibank

Fibank Ecomm Service for Laravel

Installation

Installation using composer:

composer require gentor/fibank

Add the service provider in config/app.php:

Gentor\Fibank\ServiceProvider::class,

Add the facade alias in config/app.php:

Gentor\Fibank\Facade\Fibank::class,

Configuration

Convert .jks certificate to .pem:

$cmd = "keytool -importkeystore -srckeystore " . escapeshellarg($file_path) . " -destkeystore " . escapeshellarg($p12file) . " -srcstoretype JKS -deststoretype PKCS12 -srcstorepass {$password} -deststorepass {$password} -noprompt";
$cmd = "openssl pkcs12 -in " . escapeshellarg($p12file) . " -out " . escapeshellarg($pemfile) . " -passin pass:{$password} -passout pass:{$password}";

Change your default settings in app/config/fibank.php:

<?php
return [
    'certificate' => env('FIBANK_CERTIFICATE_PEM'),
    'password' => env('FIBANK_CERTIFICATE_PASSWORD'),
    'live_mode' => env('FIBANK_LIVE_MODE'),
];

Documentation

Fibank