PHPackages                             apuspayments/client - 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. apuspayments/client

ActiveLibrary[Payment Processing](/categories/payments)

apuspayments/client
===================

ApusPayments is a plataform to make payments using criptocurrencies.

1.0.1(7y ago)15MITPHPPHP &gt;=7.1

Since Oct 4Pushed 7y ago2 watchersCompare

[ Source](https://github.com/apuspayments/API-PHP)[ Packagist](https://packagist.org/packages/apuspayments/client)[ RSS](/packages/apuspayments-client/feed)WikiDiscussions master Synced 4d ago

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

API-PHP
=======

[](#api-php)

ApusPayments is a plataform to make payments using criptocurrencies.

- Language: PHP

[Documentation API](https://docs.apuspayments.com/)

[![Latest Stable Version](https://camo.githubusercontent.com/d05a79f0988684ef846bbe9f409a7def162d4a1a27a9d89f03fd283fbc1f84ea/68747470733a2f2f706f7365722e707567782e6f72672f617075737061796d656e74732f636c69656e742f76657273696f6e)](https://packagist.org/packages/apuspayments/client)[![Latest Unstable Version](https://camo.githubusercontent.com/b7d8c7068f13657aa252c3836a5b20c4d9e495c324996c753a82f60dee169b8b/68747470733a2f2f706f7365722e707567782e6f72672f617075737061796d656e74732f636c69656e742f762f756e737461626c65)](//packagist.org/packages/apuspayments/client)[![Total Downloads](https://camo.githubusercontent.com/35a416f5e36cbc6594a8bb8aa8c13d62b878f6190328717facff767f4856aa18/68747470733a2f2f706f7365722e707567782e6f72672f617075737061796d656e74732f636c69656e742f646f776e6c6f616473)](https://packagist.org/packages/apuspayments/client)

Examples of use
---------------

[](#examples-of-use)

- Payments by card
- Recurring payments
- Cancel payment
- Consult payments
- Cryptocurrency recharge

---

Getting Started
---------------

[](#getting-started)

Install using [Composer](https://packagist.org/packages/apuspayments/client).

```
$ composer require apuspayments/client

```

Payments by card
----------------

[](#payments-by-card)

```
$apusPaymentsAPI = new ApusPaymentsAPI(Environment::sandbox());

$makePayment = new MakePayment();

$makePayment->setAmount(10.00);
$makePayment->setBlockchain(BlockChainType::LTC);
$makePayment->setCurrency(CurrencyType::BRL);
$makePayment->setPan("9999999999999999");
$makePayment->setPassword("1234");
$makePayment->setVendorKey("5f5bdaed-f82b-4b82-b3f5-1d562633da5b");

$makePaymentResponse = $apusPaymentsAPI->makePayment($makePayment);
```

---

Recurring payments
------------------

[](#recurring-payments)

```
$apusPaymentsAPI = new ApusPaymentsAPI(Environment::sandbox());

$makeRecurringPayment = new MakeRecurringPayment();

$makeRecurringPayment->setAmount(10.00);
$makeRecurringPayment->setBlockchain(BlockChainType::LTC);
$makeRecurringPayment->setCurrency(CurrencyType::BRL);
$makeRecurringPayment->setPeriod(PeriodType::M);
$makeRecurringPayment->setFrequency(12);
$makeRecurringPayment->setExecute(true);
$makeRecurringPayment->setPan("9999999999999999");
$makeRecurringPayment->setPassword("1234");
$makeRecurringPayment->setVendorKey("5f5bdaed-f82b-4b82-b3f5-1d562633da5b");

$makeRecurringPaymentResponse = $apusPaymentsAPI->makeRecurringPayment($makePayment);
```

---

Cancel payment
--------------

[](#cancel-payment)

```
$apusPaymentsAPI = new ApusPaymentsAPI(Environment::sandbox());

$cancelPayment = new CancelPayment();

$cancelPayment->setTxId("2bf779e2a311c2629df977b0bb105879411fd71f5839972c4ed1d3278f80170f");
$cancelPayment->setPassword("1234");
$cancelPayment->setVendorKey("5f5bdaed-f82b-4b82-b3f5-1d562633da5b");

$cancelPaymentResponse = $apusPaymentsAPI->cancelPayment($cancelPayment);
```

---

Consult payments
----------------

[](#consult-payments)

```
$apusPaymentsAPI = new ApusPaymentsAPI(Environment::sandbox());

$searchPayment = new SearchPayment();
$searchPayment->setVendorKey("5f5bdaed-f82b-4b82-b3f5-1d562633da5b");

$searchPaymentResponse = $apusPaymentsAPI->searchPayment($searchPayment);
```

---

Cryptocurrency recharge
-----------------------

[](#cryptocurrency-recharge)

```
$apusPaymentsAPI = new ApusPaymentsAPI(Environment::sandbox());

$rechargeCryptoBalance = new RechargeCryptoBalance();

$rechargeCryptoBalance->setAmount(10.00);
$rechargeCryptoBalance->setBlockchain(BlockChainType::LTC);
$rechargeCryptoBalance->setCurrency(CurrencyType::BRL);
$rechargeCryptoBalance->setPan("9999999999999999");
$rechargeCryptoBalance->setPassword("1234");
$rechargeCryptoBalance->setVendorKey("5f5bdaed-f82b-4b82-b3f5-1d562633da5b");

$rechargeCryptoBalanceResponse = $apusPaymentsAPI->rechargeCryptoBalance($rechargeCryptoBalance);
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community10

Small or concentrated contributor base

Maturity58

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 62.5% 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 ~0 days

Total

2

Last Release

2781d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/42419043?v=4)[ApusPayments](/maintainers/apuspayments)[@apuspayments](https://github.com/apuspayments)

---

Top Contributors

[![marcos-rocha](https://avatars.githubusercontent.com/u/22174808?v=4)](https://github.com/marcos-rocha "marcos-rocha (15 commits)")[![fellipeesteves](https://avatars.githubusercontent.com/u/5082030?v=4)](https://github.com/fellipeesteves "fellipeesteves (9 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/apuspayments-client/health.svg)

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

###  Alternatives

[chargebee/chargebee-php

ChargeBee API client implementation for PHP

768.0M9](/packages/chargebee-chargebee-php)[imdhemy/google-play-billing

Google Play Billing

491.3M5](/packages/imdhemy-google-play-billing)[bitpay/sdk

Complete version of the PHP library for the new cryptographically secure BitPay API

42337.5k4](/packages/bitpay-sdk)[buckaroo/sdk

Buckaroo payment SDK

12189.1k9](/packages/buckaroo-sdk)[contica/facturador-electronico-cr

Un facturador de código libre para integrar facturación electrónica en Costa Rica a un proyecto PHP

2128.8k](/packages/contica-facturador-electronico-cr)[karson/mpesa-php-sdk

172.2k](/packages/karson-mpesa-php-sdk)

PHPackages © 2026

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