LaravelPackages.net
Acme Inc.
Toggle sidebar
d-scribe/laravel-paystack

A collection of classes to be extended/used in laravel applications for quick development

12
0
v1.1.1
About d-scribe/laravel-paystack

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

laravel-paystack

A wrapper around the official paystack library for laravel.

Installation

composer require d-scribe/laravel-paystack

For Laravel <= 5.4:

  1. Add Paystack\Providers\ServiceProvider to the providers section in config\app.php file like

    'providers' => [
        // ...
        Paystack\Providers\ServiceProvider::class,
    ]
    
  2. Add Paystack\Facades\Api to the aliases section in config\app.php file like

    'aliases' => [
        // ...
        'PaystackApi' => Paystack\Facades\Api::class
    ]
    
  3. Create PAYSTACK_SECRET_KEY variable in the .env file

Usage

See https://github.com/yabacon/paystack-php.

Star History Chart