|
|
3 жил өмнө | |
|---|---|---|
| .. | ||
| example | 3 жил өмнө | |
| lib | 3 жил өмнө | |
| tests | 3 жил өмнө | |
| .gitignore | 3 жил өмнө | |
| .travis.yml | 3 жил өмнө | |
| README.md | 3 жил өмнө | |
| composer.json | 3 жил өмнө | |
| phpunit.xml | 3 жил өмнө | |
Paystack PHP is a library for using the Paystack API from PHP.
While there are other PHP libraries for Paystack, this library is designed to make it less cumbersome to implement a payment flow on the Paystack payment platform.
To install using composer
composer install perfectmak/paystack-php
First you initialize the library with your secret key
\Paystack\Paystack::init('__secret_key_here__');
$payment = \Paystack\Transaction::initialize([
'email' => 'jame@gosling.com',
'amount' => '3000'
]);
$customer = \Paystack\Customer::create([
'email' => 'google@gosling.com',
'first_name' => 'Perfect',
'last_name' => 'Makanju',
'phone' => 'xxxxxxx'
]);
echo 'Customer\'s first name is: '.$customer->first_name;
This library is far from complete and not yet stable. So I don't advice using it yet.