PHPackages                             coinremitterlaravel/coinremitter-laravel - 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. [API Development](/categories/api)
4. /
5. coinremitterlaravel/coinremitter-laravel

Abandoned → [coinremitter/laravel](/?search=coinremitter%2Flaravel)Library[API Development](/categories/api)

coinremitterlaravel/coinremitter-laravel
========================================

Official laravel plugin for Coinremitter cryptocurrency payment gateway

1.0.1(5mo ago)214012[1 issues](https://github.com/CoinRemitter/coinremitter-laravel/issues)[1 PRs](https://github.com/CoinRemitter/coinremitter-laravel/pulls)MITPHP

Since Sep 5Pushed 5mo agoCompare

[ Source](https://github.com/CoinRemitter/coinremitter-laravel)[ Packagist](https://packagist.org/packages/coinremitterlaravel/coinremitter-laravel)[ Docs](https://coinremitter.com/)[ RSS](/packages/coinremitterlaravel-coinremitter-laravel/feed)WikiDiscussions master Synced 3d ago

READMEChangelog (10)Dependencies (1)Versions (13)Used By (0)

CoinRemitter Plugin For Laravel
===============================

[](#coinremitter-plugin-for-laravel)

Coinremitter is a [crypto payment processor](http://coinremitter.com). Accept Bitcoin, Bitcoin Cash, Litecoin, Dogecoin, Dash, Tron, Binance ,Tether USD ERC20,Tether USD TRC20 etc.View all supported currency [here](http://coinremitter.com/supported-currencies).

**What is the Crypto Payment Processor?**

The Crypto Payment Processor acts as a mediator between merchants and customers, allowing the merchant to receive payments in the form of cryptocurrency.

**If you want to use coinremitter API then refer this [api documentation](https://api.coinremitter.com/docs)**.

Prerequisites
-------------

[](#prerequisites)

- A minimum of PHP 7.2 upto 8.4.
- Laravel Framework Installed.The plugin supports Laravel version 7.x upto 11.x
- Make sure [Composer](https://getcomposer.org/) is installed globally. It is required to manage dependencies.

Installation Guide
------------------

[](#installation-guide)

**You can install Coinremitter’s plugin using the composer in Laravel:**

```
composer require coinremitter/laravel
```

**Register service provider for Laravel 10.x and earlier like below:**

- In `config/app.php`Add `Coinremitter\CoinremiterServiceProvider::class` line at the bottom in the `providers` array

```
'providers' => [
   Coinremitter\CoinremiterServiceProvider::class,
]
```

**Register service provider for Laravel 11.x like below:**

- In `bootstrap/providers.php` Add `Coinremitter\CoinremiterServiceProvider::class` line in array

**Publish the configuration file to the config folder using the following command:**

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

**Set credentials of all coins which you want to use from coinremitter in config/coinremitter.php like this:**If this file does not exist then create and set configuration like this. [How to get API key and Password ?](https://blog.coinremitter.com/how-to-get-api-key-and-password-of-coinremitter-wallet/)

> ***NOTE:*** Include specific coins in coinremitter.php that you wish to utilize in your system.

```
