PHPackages                             zaptrance/payment - 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. zaptrance/payment

ActiveLibrary[Payment Processing](/categories/payments)

zaptrance/payment
=================

This will accept zaptrance payment

151PHP

Since Feb 25Pushed 6y ago1 watchersCompare

[ Source](https://github.com/Auwalkay/Zaptrance-Payment)[ Packagist](https://packagist.org/packages/zaptrance/payment)[ RSS](/packages/zaptrance-payment/feed)WikiDiscussions master Synced 1w ago

READMEChangelogDependenciesVersions (1)Used By (0)

\#Laravel-Zaptrance

Laravel Package for working with Zaptrance Payment System.

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

[](#installation)

[PHP](https://php.net) 5.4+ or [HHVM](http://hhvm.com) 3.3+, and [Composer](https://getcomposer.org) are required.

To get the latest version of Laravel Zaptrance, just require it

composer require zaptrance/payment

Or add the following line to the require block of your `composer.json` file. ... "zaptrance/payment ... You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.

Once Laravel Zaptrace is installed, you need to register the service provider. Open up `config/app.php` and add the following to the `providers` key. If you use **Laravel &gt;= 5.5** you can skip this step and go to \[**`configuration`**\]

- `Zaptrance\Payment\ZaptranceServiceProvider::class,`

Also, register the Facade like so:

```
'aliases' => [
    ...
    "Zaptrance"=> Zaptrance\Payment\Facades\Zaptrance::class,
    ...
]
```

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Zaptrance\Payment\ZaptranceServiceProvider"
```

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

```
