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

This package is auto-updated.

Last update: 2024-03-29 00:24:47 UTC


README

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.