PHPackages                             pxgamer/changelly - 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. pxgamer/changelly

ActiveLibrary[API Development](/categories/api)

pxgamer/changelly
=================

A PHP wrapper for the Changelly API.

v1.1.0(7y ago)0203MITPHPPHP ^7.1

Since Dec 21Pushed 7y ago2 watchersCompare

[ Source](https://github.com/owenvoke/changelly-php)[ Packagist](https://packagist.org/packages/pxgamer/changelly)[ RSS](/packages/pxgamer-changelly/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependencies (3)Versions (5)Used By (0)

changelly
=========

[](#changelly)

[![Latest Version on Packagist](https://camo.githubusercontent.com/1092b600aee1a98a70cf6d648533a1410863a5bcae88088b171628e01637cb34/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f707867616d65722f6368616e67656c6c792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pxgamer/changelly)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/be60c1b43dc069bb14807536b23e566a089fb12b92661765116e6ca56d35bfbd/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f707867616d65722f6368616e67656c6c792d7068702f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/pxgamer/changelly-php)[![Style CI](https://camo.githubusercontent.com/588f13b41f669e5d0afd23d443281c7184abc83aa4a8c9e09aba839ef717bb4e/68747470733a2f2f7374796c6563692e696f2f7265706f732f3131343839393530352f736869656c64)](https://styleci.io/repos/114899505)[![Code Coverage](https://camo.githubusercontent.com/547bf4d58c38c00483f2dd2612e5e8639be15bc3df20ff82e8b1f40affdb12dc/68747470733a2f2f696d672e736869656c64732e696f2f636f6465636f762f632f6769746875622f707867616d65722f6368616e67656c6c792d7068702e7376673f7374796c653d666c61742d737175617265)](https://codecov.io/gh/pxgamer/changelly-php)[![Total Downloads](https://camo.githubusercontent.com/a8b1cb4ee664628d80426bcbb7b9c41defddd672a8d5b76541b2f778a03f7ade/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f707867616d65722f6368616e67656c6c792e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/pxgamer/changelly)

A PHP wrapper for the [Changelly](https://changelly.com) API.

Install
-------

[](#install)

Via Composer

```
$ composer require pxgamer/changelly
```

Usage
-----

[](#usage)

**Creating instances**

```
use pxgamer\Changelly\{Currencies,Transactions,Message};

$currencies = new Currencies();
$transactions = new Transactions();
```

**Retrieve an array of currency names**

Retrieve an array of strings stating the `name` of the currency.

```
$currencies->get();
```

**Retrieve an array of currency `stdClass` instances**

These contain the following information:

- name
- fullName
- enabled

```
$currencies->getFull();
```

**Retrieve the minimum amount required to convert between 2 currencies**

```
$currencies->minimumAmount('btc', 'etc');
```

**Retrieve the estimated exchange value between 2 currencies**

```
$currencies->exchangeAmount('btc', 'etc', 1.0);
```

**Retrieve an array of transactions**

Returns an array of transaction `stdClass` instances containing the following values:

- id
- createdAt
- payinConfirmations
- status
- currencyFrom
- currencyTo

```
$transactions->get();
```

**Retrieve a single transaction's status by ID**

Returns a transaction status string.

```
$transactions->status('id');
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](.github/CONTRIBUTING.md) and [CODE\_OF\_CONDUCT](.github/CODE_OF_CONDUCT.md) for details.

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Credits
-------

[](#credits)

- [pxgamer](https://github.com/pxgamer)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity8

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

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.

###  Release Activity

Cadence

Every ~199 days

Total

3

Last Release

2715d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1899334?v=4)[Owen Voke](/maintainers/owenvoke)[@owenvoke](https://github.com/owenvoke)

---

Top Contributors

[![owenvoke](https://avatars.githubusercontent.com/u/1899334?v=4)](https://github.com/owenvoke "owenvoke (45 commits)")

---

Tags

apichangellycomposerphpwrapper

###  Code Quality

TestsPHPUnit

Code StylePHP\_CodeSniffer

### Embed Badge

![Health badge](/badges/pxgamer-changelly/health.svg)

```
[![Health](https://phpackages.com/badges/pxgamer-changelly/health.svg)](https://phpackages.com/packages/pxgamer-changelly)
```

###  Alternatives

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M932](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k34](/packages/neuron-core-neuron-ai)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

252.5k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[fschmtt/keycloak-rest-api-client-php

PHP client to interact with Keycloak's Admin REST API.

49108.6k2](/packages/fschmtt-keycloak-rest-api-client-php)

PHPackages © 2026

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