PHPackages                             elise194/easy-coinpayments - 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. elise194/easy-coinpayments

ActiveLibrary[API Development](/categories/api)

elise194/easy-coinpayments
==========================

Coinpayments API package for Laravel

21PHP

Since Apr 6Pushed 6y ago1 watchersCompare

[ Source](https://github.com/Elise194/easy-coinpayments)[ Packagist](https://packagist.org/packages/elise194/easy-coinpayments)[ RSS](/packages/elise194-easy-coinpayments/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependenciesVersions (1)Used By (0)

CoinPayments API wrapper
========================

[](#coinpayments-api-wrapper)

[![Latest Stable Version](https://camo.githubusercontent.com/47f58049458055c9498eae2e25b3bf37351fd427e9c3d9fd6f619b3efbede605/68747470733a2f2f706f7365722e707567782e6f72672f656c6973653139342f656173792d636f696e7061796d656e74732f76657273696f6e)](https://packagist.org/packages/elise194/easy-coinpayments)[![License](https://camo.githubusercontent.com/c6fe6ce5ed201368ecfd9c9119d75a1a5aef25c7d0da2c6c8a24044ab6449cc6/68747470733a2f2f706f7365722e707567782e6f72672f656c6973653139342f656173792d636f696e7061796d656e74732f6c6963656e7365)](https://packagist.org/packages/elise194/easy-coinpayments)

CoinPayments API wrapper for Laravel framework

**Install**

`composer require Elise194/easy-coinpayments`

**Install Service Provider**

```
$this->app->register(Elise194\EasyCoinPayments\CoinpaymentsServiceProvider::class);

```

**.env params**

```
COINPAYMENTS_API_PUBLIC_KEY="your public api key"
COINPAYMENTS_API_PRIVATE_KEY="your private api key"
COINPAYMENTS_API_IPN_SECRET="your ipn secret"

```

**Migration**

Run `php artisan migrate`

**Usage**

If you want to get transaction as an object use CoinpaymentsService:

```
$service = new Elise194\EasyCoinPayments\Services\CoinpaymentsService();
$transaction = $service->createCoinPaymentsTransaction($amount, $currency1, $currency2, $buyerEmail);
```

This entry from the database will be used to receive IPN callback

To get transaction info as array use simple

```
$coinpayments = app('coinpayments');
$responseData = $coinpayments->payment()->createTransaction(
     $amount,
     $currency1,
     $currency2,
     $buyer_email,
     $options,
     $isNeedLog
);
```

Other functions from API are divided to sections.

Information

The main commands from "information" sections in CoinPayments documentations

```
$coinpayments = app('coinpayments');
$coinpayments->information()->getBasicAccountInfo();
$coinpayments->information()->getExchageRates($isShort, $accepted);
```

Payments.

Getting callback address example:

```
$coinpayments = app('coinpayments');
$coinpayments->payment()->getCallbackAddress($currency, $ipnUrl, $label);
```

The full list of functions is in the /Actions/Payment.php. It matches functions from CoinPayments methods from "Receiving payments" section in documentation.

Wallet

Example:

```
$coinpayments = app('coinpayments');
$coinpayments->wallet()->getCoinBalances($isNeedAll);
```

The full list of functions is in the /Actions/Wallet.php. It matches functions from CoinPayments methods from "Wallet" section in documentation.

###  Health Score

17

—

LowBetter than 6% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity34

Early-stage or recently created project

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

### Community

Maintainers

![](https://www.gravatar.com/avatar/fdf6e5064327d82e30b8c711c3e6a5dfcfa81102ea26bf8a210fce3ece87ae40?d=identicon)[Elise194](/maintainers/Elise194)

### Embed Badge

![Health badge](/badges/elise194-easy-coinpayments/health.svg)

```
[![Health](https://phpackages.com/badges/elise194-easy-coinpayments/health.svg)](https://phpackages.com/packages/elise194-easy-coinpayments)
```

###  Alternatives

[stripe/stripe-php

Stripe PHP Library

4.0k143.3M480](/packages/stripe-stripe-php)[twilio/sdk

A PHP wrapper for Twilio's API

1.6k92.9M272](/packages/twilio-sdk)[knplabs/github-api

GitHub API v3 client

2.2k15.8M187](/packages/knplabs-github-api)[facebook/php-business-sdk

PHP SDK for Facebook Business

90121.9M34](/packages/facebook-php-business-sdk)[meilisearch/meilisearch-php

PHP wrapper for the Meilisearch API

73813.7M114](/packages/meilisearch-meilisearch-php)[google/gax

Google API Core for PHP

263103.1M454](/packages/google-gax)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
