A collection of classes to be extended/used in laravel applications for quick development
d-scribe/laravel-paystack is a Laravel package for a collection of classes to be extended/used in laravel applications for quick development.
It currently has 0 GitHub stars and 12 downloads on Packagist (latest version v1.1.1).
Install it with composer require d-scribe/laravel-paystack.
Discover more Laravel packages by d-scribe
or browse all Laravel packages to compare alternatives.
Last updated
A wrapper around the official paystack library for laravel.
composer require d-scribe/laravel-paystack
For Laravel <= 5.4:
Add Paystack\Providers\ServiceProvider to the providers section in config\app.php file like
'providers' => [
// ...
Paystack\Providers\ServiceProvider::class,
]
Add Paystack\Facades\Api to the aliases section in config\app.php file like
'aliases' => [
// ...
'PaystackApi' => Paystack\Facades\Api::class
]
Create PAYSTACK_SECRET_KEY variable in the .env file