d-scribe / laravel-paystack
A collection of classes to be extended/used in laravel applications for quick development
v1.1.1
2019-06-28 13:28 UTC
Requires
- yabacon/paystack-php: ^2.1
This package is auto-updated.
Last update: 2025-03-01 00:27:39 UTC
README
A wrapper around the official paystack library for laravel.
Installation
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