Blog Banner 2 months ago TZSMM Pay
PHP Library Composer

Introducing the TZSMM Pay PHP Library

161
Sun, Jan 26

Weโ€™re excited to announce the release of the official TZSMM Pay PHP Library, designed to make payment gateway integration seamless and efficient for PHP developers!

๐Ÿ“ฆ Key Features

  • Create Payments: Effortlessly create payments using the TZSMM Pay API.
  • Verify Payments: Check the status of payments in real-time.
  • Supports PHP 7.2+.
  • Offers secure and easy integration.

๐Ÿš€ Installation Guide

Installing the library is simple. Just follow these steps:

  1. Install via Composer: Run the following command in your terminal:
    composer require tzsmm/tzsmmpay
  2. Autoload the Package: Composer automatically loads the library, so youโ€™re ready to go!

๐Ÿ› ๏ธ How to Use

Create Payment

Use the following example code to create a payment:


use Tzsmmpay\TzsmmpayClient;
use Tzsmmpay\TzsmmpayResponse;

$apiKey = 'your_api_key_here';  // Replace with your actual API key
$tzsmm = new TzsmmpayClient($apiKey);

$paymentData = [
    'cus_name' => 'Demo User',
    'cus_email' => 'demo@demo.com',
    'cus_number' => '01700000000',
    'amount' => 1,
    'success_url' => 'https://yourdomain.com/success',
    'cancel_url' => 'https://yourdomain.com/cancel',
    'callback_url' => 'https://yourdomain.com/callback',
];

$response = $tzsmm->createPayment($paymentData);

if ($response->isSuccess()) {
    echo "Payment created successfully!";
    echo "Transaction ID: " . $response->getData()['transaction_id'];
    echo "Payment URL: " . $response->getData()['payment_url'];
} else {
    echo "Error: " . $response->getMessage();
}

Verify Payment

After a customer completes a payment, verify the transaction:


$transactionId = 'trx_123456';  // Replace with actual transaction ID

$response = $tzsmm->verifyPayment($transactionId);

if ($response->isSuccess()) {
    if ($response->getData()['status'] == 'Completed') {
        echo "Payment verified successfully!";
    } else {
        echo "Payment status: " . $response->getData()['status'];
    }
} else {
    echo "Verification failed: " . $response->getMessage();
}

๐Ÿ“š API Documentation

For detailed API documentation, visit our official library on Packagist.

๐ŸŒŸ Get Started Today!

Start integrating the TZSMM Pay gateway into your PHP applications with ease. For any issues or contributions, check out our GitHub repository.