PHPackages                             prevailexcel/laravel-coinremitter - 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. prevailexcel/laravel-coinremitter

ActiveLibrary[Payment Processing](/categories/payments)

prevailexcel/laravel-coinremitter
=================================

A Laravel Package for Coinremitter

1.0.0(3y ago)1584MITPHP

Since Dec 9Pushed 3y ago1 watchersCompare

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

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

laravel-coinremitter
====================

[](#laravel-coinremitter)

[![Latest Stable Version](https://camo.githubusercontent.com/f20bc019af57500539a94b76fc6a6ad409f059fe99a2e273b9618f6e5fe6a200/68747470733a2f2f706f7365722e707567782e6f72672f7072657661696c657863656c2f6c61726176656c2d636f696e72656d69747465722f762f737461626c652e737667)](https://packagist.org/packages/prevailexcel/laravel-coinremitter)[![License](https://camo.githubusercontent.com/b010435d1007f9f55b632dae3f5378863c176cea9089879d1dc0ef590d3da253/68747470733a2f2f706f7365722e707567782e6f72672f7072657661696c657863656c2f6c61726176656c2d636f696e72656d69747465722f6c6963656e73652e737667)](LICENSE.md)

> A Laravel Package for working with Coinremitter seamlessly

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 Coinremitter, simply require it

```
composer require prevailexcel/laravel-coinremitter
```

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

```
"prevailexcel/laravel-coinremitter": "1.0.*"

```

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

Once Laravel Coinremitter 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`**](https://github.com/PrevailExcel/laravel-coinremitter#configuration)

```
'providers' => [
    ...
    PrevailExcel\Coinremitter\CoinremitterServiceProvider::class,
    ...
]
```

- `PrevailExcel\Coinremitter\CoinremitterServiceProvider::class`

Also, register the Facade like so:

```
'aliases' => [
    ...
    'Coinremitter' => PrevailExcel\Coinremitter\Facades\Coinremitter::class,
    ...
]
```

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

[](#configuration)

You can publish the configuration file using this command:

```
php artisan vendor:publish --provider="PrevailExcel\Coinremitter\CoinremitterServiceProvider"
```

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

```
