PHPackages                             rodineiti/smartfastpay-sdk-php - 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. rodineiti/smartfastpay-sdk-php

ActiveLibrary[Payment Processing](/categories/payments)

rodineiti/smartfastpay-sdk-php
==============================

SDK with PHP for Smartfastpay to process payments and payouts

v1.0.5(2y ago)1843MITPHPPHP ^7.2 || ^8.0

Since Jan 22Pushed 2y ago2 watchersCompare

[ Source](https://github.com/rodineiti/smartfastpay-sdk-php)[ Packagist](https://packagist.org/packages/rodineiti/smartfastpay-sdk-php)[ RSS](/packages/rodineiti-smartfastpay-sdk-php/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (7)Dependencies (3)Versions (9)Used By (0)

Smartfastpay SDK for PHP
========================

[](#smartfastpay-sdk-for-php)

[![Version](https://camo.githubusercontent.com/34e695c6016bc2a934a96bed696e29b2f2ab562a7134d65a55d00653cd506bea/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d312e302e302d626c75652e737667)](https://camo.githubusercontent.com/34e695c6016bc2a934a96bed696e29b2f2ab562a7134d65a55d00653cd506bea/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f76657273696f6e2d312e302e302d626c75652e737667)[![PHP](https://camo.githubusercontent.com/4e0400e54edc6150aa13bf746cd7862f282ef747217d7dfdcdfecc05ab761f5c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253545382e312d626c756576696f6c65742e737667)](https://camo.githubusercontent.com/4e0400e54edc6150aa13bf746cd7862f282ef747217d7dfdcdfecc05ab761f5c/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f7068702d253545382e312d626c756576696f6c65742e737667)[![License](https://camo.githubusercontent.com/8bb50fd2278f18fc326bf71f6e88ca8f884f72f179d3e555e20ed30157190d0d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e2e737667)](https://camo.githubusercontent.com/8bb50fd2278f18fc326bf71f6e88ca8f884f72f179d3e555e20ed30157190d0d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d677265656e2e737667)

Welcome to the initial release of the **Smartfastpay SDK** for PHP - a powerful and flexible library for processing payments and payouts.

Key Features:
-------------

[](#key-features)

1. **Payments and Payouts Implementation:** Full support for processing payments and payouts.
2. **Design Patterns and Best Practices:** Utilizes design patterns like Strategy, following best practices for clean and maintainable code.
3. **Flexible Configurations:** Easily configure client keys and secrets.
4. **Guzzle HTTP Requests:** Integrates with Guzzle HTTP for efficient and reliable requests.
5. **Exception Handling:** Implements specific exceptions for each resource, along with the use of HTTP exceptions for error handling.
6. **Secure Authentication:** Implements secure authentication with automatic access token renewal.

Getting Started:
----------------

[](#getting-started)

1. **Installation via Composer:**

    ```
    composer require rodineiti/smartfastpay-sdk-php
    ```
2. **Quick Setup:**

    ```
    use Rodineiti\SmartfastpaySdk\Config\Config;
    use Rodineiti\SmartfastpaySdk\Payment;
    use Rodineiti\SmartfastpaySdk\Strategy\Payment\Pix\PixPaymentStrategy;

    $config = new Config('client_id', 'client_secret');

    $payment = new Payment($config);
    $payment->setStrategy(new PixPaymentStrategy());
    ```
3. **Payment Processing:**

    ```
     use Rodineiti\SmartfastpaySdk\Strategy\Payment\Pix\PixParams;

     try {
         $respose = $payment->processPayment(new PixParams(
             uniqid(),
             'John Doe',
             'john.doe@example.com',
             '12345678909',
             2.00,
             'BRL',
             'http://example.com/callback',
             uniqid(),
         ));

         header("Content-Type: application/json");
         echo $respose;
     } catch (Exception $e) {
         var_dump("Error on create payment: {$e->getMessage()}");
     }
    ```

###  Health Score

27

—

LowBetter than 49% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity18

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity52

Maturing project, gaining track record

 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 ~1 days

Total

7

Last Release

829d ago

PHP version history (2 changes)v1.0.0PHP ^8.1

v1.0.3PHP ^7.2 || ^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/49d82ef95613e01ffd4864a33b0e80af3b806621cd0719a93b792605f90bf2f3?d=identicon)[rodineiti](/maintainers/rodineiti)

---

Top Contributors

[![rodineiti](https://avatars.githubusercontent.com/u/25492122?v=4)](https://github.com/rodineiti "rodineiti (11 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/rodineiti-smartfastpay-sdk-php/health.svg)

```
[![Health](https://phpackages.com/badges/rodineiti-smartfastpay-sdk-php/health.svg)](https://phpackages.com/packages/rodineiti-smartfastpay-sdk-php)
```

###  Alternatives

[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.1k8](/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)

PHPackages © 2026

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