Skip to main content

Online Payment SDK - PHP

The Botim Money PHP SDK provides a simple way to integrate Botim Money payment services into your PHP applications.

You can download it from SDK Repository.

Requirements

  • PHP: Version 5.6 or higher

Installation

Install the SDK via Composer:

composer require payby/payby-php

Then include the Composer autoloader in your project:

require_once('vendor/autoload.php');

Manual Installation

If you prefer not to use Composer, you can manually include the SDK:

require_once('/path/to/payby-php/init.php');

Getting Started

Initialize the SDK

Before making any API calls, initialize the Botim Money SDK with your API key:

\PayBy\PayBy::setApiKey('YOUR-KEY');

Replace 'YOUR-KEY' with your actual Botim Money API key.

Order

// TODO