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

21PHPCI failing

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 3w ago

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://avatars.githubusercontent.com/u/8024334?v=4)[Elise194](/maintainers/Elise194)[@Elise194](https://github.com/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

[exsyst/swagger

A php library to manipulate Swagger specifications

35916.4M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24016.2M20](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172445.0k15](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

93459.5k6](/packages/botman-driver-telegram)

PHPackages © 2026

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