d-scribe / laravel-paystack
A collection of classes to be extended/used in laravel applications for quick development
Installs: 12
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
pkg:composer/d-scribe/laravel-paystack
Requires
- yabacon/paystack-php: ^2.1
This package is auto-updated.
Last update: 2025-09-29 02:21:17 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