PHPackages                             jayboss/paystack - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Payment Processing](/categories/payments)
4. /
5. jayboss/paystack

ActiveLibrary[Payment Processing](/categories/payments)

jayboss/paystack
================

This is a paystack payment gateway integration with laravel

v1.0.2(3y ago)121MITPHP

Since Mar 13Pushed 3y ago1 watchersCompare

[ Source](https://github.com/Mayejacob/jayboss-paystaack)[ Packagist](https://packagist.org/packages/jayboss/paystack)[ RSS](/packages/jayboss-paystack/feed)WikiDiscussions main Synced 1mo ago

READMEChangelogDependenciesVersions (3)Used By (0)

Paystack Payment Integration
============================

[](#paystack-payment-integration)

> A Laravel Package for working with Paystack seamlessly

Installation
------------

[](#installation)

[PHP](https://php.net) 8.0.2+ and [Composer](https://getcomposer.org) are required.

To get the latest version, simply require it

```
composer require jayboss/paystack
```

Or add the following line to the require block of your `composer.json` file.

```
"jayboss/paystack": "1.0.2"

```

You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.

Once Laravel Paystack is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key.

```
'providers' => [
    ...
    Jayboss\Paystack\PaystackServiceProvider::class,
    ...
]
```

Configuration
-------------

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Jayboss\Paystack\PaystackServiceProvider"
```

A configuration-file named `paystack.php` with some sensible defaults will be placed in your `config` directory:

```
