IPSP PHP SDK

Free and open-source software development kit written in PHP and distributed under the MIT License.

IPSP PHP SDK is a wrapper of Fondy payment protocol REST API and covers e-commerce for businesses of all types and support popular CMS modules for fast integration in existing software architecture.

How Does it Work?

Payment Service Providers partner with Acquiring Banks to offer Merchants the capability to accept payments. Payment Service Providers often offer services in addition to processing transactions.

These services include Payment Card Industry and Data Security Standard (PCI) compliance, fraud protection and the ability to process different currencies and translate different languages.

Payment Service Provider

A payment service provider (PSP) offers shops online services for accepting electronic payments by a variety of payment methods including credit card, bank-based payments such as direct debit, bank transfer, and real-time bank transfer based on online banking. Typically, they use a software as a service model and form a single payment gateway for their clients (merchants) to multiple payment methods. read more

Fondy schema redirect

Need Checkout Preview?

Fondy schema redirect

Open IPSP PHP SDK Sandbox

How make a quick checkout URL for a specific product?

1. Install kosatyi/ipsp-php module throw composer package manager.

composer require kosatyi/ipsp-php

2. And create file checkout.php with content below:

<?php
require_once 'vendor/autoload.php';
define('MERCHANT_ID' , 1396424 );
define('MERCHANT_PASSWORD' , 'test' );
define('IPSP_GATEWAY' ,  'api.fondy.eu' );
$client = new Ipsp_Client( MERCHANT_ID , MERCHANT_PASSWORD, IPSP_GATEWAY );
$ipsp   = new Ipsp_Api( $client );
$data = $ipsp->call('checkout',array(
  'order_id'    => sprintf('ipsp-php-order-%s',rand(1,9999999)),
  'order_desc'  => 'Product description',
  'currency'    => $ipsp::USD ,
  'amount'      => 2000, // 20 USD
  'response_url'=> sprintf('http://shop.example.com/checkout/result')
));
$data->redirectToCheckout();

Still need help? Send us a note!

Blog Articles

The Future of Payments in the Age of Smart Devices

The payments industry is undergoing a revolution in which mobility and other innovations in technology are constantly driving change.

A Faster Payments Use Case that is Catching On

Stripe announced that it will be joining a few other payment processors

Welcome to the Ukraine, Comrad. JCB Credit Card Heads North to Russia

Jumping over to Russia is today’s read where Kyiv Post announced that Japan’s JCB card is about to enter Ukraine

Paysafe to run global hackathon

Paysafe Group, a leading global payments provider, will host its first global hackathon

Amazon Gets Into The Branded-Mattress Business

Amazon is reportedly getting into the online mattress business, entering a market in which a handful of startups are trying to dominate.

Project Sections