PHPackages                             gitkv/laravel-uniteller - 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. gitkv/laravel-uniteller

ActiveLibrary[Payment Processing](/categories/payments)

gitkv/laravel-uniteller
=======================

Laravel integration internet-acquiring of the Uniteller (unofficial)

v0.1.3(7y ago)81.5kMITPHPPHP &gt;=7.1

Since Jul 19Pushed 7y ago1 watchersCompare

[ Source](https://github.com/gitkv/laravel-uniteller)[ Packagist](https://packagist.org/packages/gitkv/laravel-uniteller)[ RSS](/packages/gitkv-laravel-uniteller/feed)WikiDiscussions master Synced 1mo ago

READMEChangelogDependencies (2)Versions (4)Used By (0)

Laravel Uniteller
=================

[](#laravel-uniteller)

[![Build Status](https://camo.githubusercontent.com/ef83eb27381b97ada4de4f2cb5dadbd701beef09c962274b4ad67891d9664dc6/68747470733a2f2f7472617669732d63692e6f72672f746d636f6e73756c74696e672f756e6974656c6c65722d7068702d73646b2e7376673f6272616e63683d302e322e30)](https://travis-ci.org/tmconsulting/uniteller-php-sdk)

Laravel / Lumen package for integration with Uniteller payment processing. The package is based on [tmconsulting/uniteller-php-sdk/](https://github.com/tmconsulting/uniteller-php-sdk/).

Requires:

- Laravel / Lumen &gt;=5.5
- PHP &gt;= 7.1
- tmconsulting/uniteller-php-sdk

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

[](#installation)

- Run:

```
composer require "gitkv/laravel-uniteller"

```

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

[](#configuration)

### Laravel:

[](#laravel)

Add service provider to /config/app.php:

```
'providers' => [
    gitkv\Uniteller\LaravelServiceProvider::class
],
'aliases' => [
    'Uniteller' => gitkv\Uniteller\Facade\Uniteller::class,
],
```

Publish `config/uniteller.php`

```
php artisan vendor:publish --provider="gitkv\Uniteller\LaravelServiceProvider" --tag=config
```

### Lumen:

[](#lumen)

Register service provider to /bootstrap/app.php:

```
$app->register(gitkv\Uniteller\LumenServiceProvider::class);
```

Copy config file `/vendor/gitkv/laravel-uniteller/config/uniteller.php` to `/config/app.php`

```
cp vendor/gitkv/laravel-uniteller/config/uniteller.php config/app.php
```

Usage
-----

[](#usage)

#### Method "Pay":

[](#method-pay)

```
