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:
- Install via Composer: Run the following command in your terminal:
composer require tzsmm/tzsmmpay
- 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.