PHPackages                             kalkulus/thetellara - 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. kalkulus/thetellara

ActivePackage[Payment Processing](/categories/payments)

kalkulus/thetellara
===================

A laravel package for theteller payment gateway

1.0.0(4y ago)3136MITPHP

Since Aug 3Pushed 4y ago2 watchersCompare

[ Source](https://github.com/Kalkulus1/thetellara)[ Packagist](https://packagist.org/packages/kalkulus/thetellara)[ RSS](/packages/kalkulus-thetellara/feed)WikiDiscussions main Synced 1w ago

READMEChangelogDependenciesVersions (2)Used By (0)

thetellara
==========

[](#thetellara)

[![Latest Stable Version](https://camo.githubusercontent.com/a703df8db3c0c00d82e6a265aab7ed04fdc409c6648071a972f50b433574e0db/68747470733a2f2f706f7365722e707567782e6f72672f6b616c6b756c75732f74686574656c6c6172612f762f737461626c652e737667)](https://packagist.org/packages/kalkulus/thetellara)[![License](https://camo.githubusercontent.com/0c2233caa924da60b15d9f38603d74b6b20086f48ab81cc5dfb5484a4ef061e5/68747470733a2f2f706f7365722e707567782e6f72672f6b616c6b756c75732f74686574656c6c6172612f6c6963656e73652e737667)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/99ec82ef74c139d837c528d07417bfda6eb8fd8e7517324c11e8ad81a4385b7b/68747470733a2f2f7472617669732d63692e636f6d2f4b616c6b756c7573312f74686574656c6c6172612e7376673f6272616e63683d6d61696e)](https://travis-ci.com/github/Kalkulus1/thetellara)[![Quality Score](https://camo.githubusercontent.com/5d9934c1c2c886a24fead5a01138105a3e1d01b69358230532535813eeef17c6/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6b616c6b756c7573312f74686574656c6c6172612e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/Kalkulus1/thetellara/)[![Total Downloads](https://camo.githubusercontent.com/fed2e05d13d8fe49d9e819a4c726dde1b8fc4e486e9f4f8127389b4e23064ed2/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6b616c6b756c75732f74686574656c6c6172612e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/kalkulus/thetellara)

> A laravel package for theteller payment gateway

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

[](#installation)

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

If you have your own server, make sure php-curl is installed.

```
apt-get install php-curl
```

To get the latest version of Thetallara, simply require it

```
composer require kalkulus/thetallara
```

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

```
"kalkulus/thetallara": "1.0.*"

```

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

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

```
'providers' => [
    ...
    Kalkulus\Thetellara\ThetellaraServiceProvider::class,,
    ...
]
```

> If you use **Laravel &gt;= 5.5** you can skip this step and go to [**`configuration`**](https://github.com/kalkulus1/thetellara#configuration)

- `Kalkulus\Thetellara\ThetellaraServiceProvider::class,`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Thetellara' => Kalkulus\Thetellara\ThetellaraServiceProvider::class,
    ...
]
```

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="Kalkulus\Thetellara\ThetellaraServiceProvider"
```

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

```
