PHPackages                             raphaelvserafim/sdk-intopays - 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. raphaelvserafim/sdk-intopays

ActiveLibrary[Payment Processing](/categories/payments)

raphaelvserafim/sdk-intopays
============================

v0.0.01(1y ago)121MITPHP

Since Dec 2Pushed 1y ago1 watchersCompare

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

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

SDK [intopays](https://intopays.com/)
=====================================

[](#sdk-intopays)

Installing via composer
-----------------------

[](#installing-via-composer)

```
composer require raphaelvserafim/sdk-intopays

```

##### Boleto

[](#boleto)

```
use SdkIntopays\Boleto;
use SdkIntopays\Pix;

include_once 'vendor/autoload.php';

$jwtToken = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpZCI6NiwiZW1haWwiOiJzZGtAaW50b3BheXMuY29tIiwiaWF0IjoxNzEzMTMzMDMwfQ.0uOXAMSq09aasfUkDCzuvaKVUBBAZf0mU1uBz-UDXkQ";

$baseUrl = "https://dev-app.intopays.com";

$boleto = new Boleto($baseUrl, $jwtToken);
```

#### Listar todos os Boletos

[](#listar-todos-os-boletos)

```
    $boletos = $boleto->getAllBoletos();
    echo json_encode($boletos);
```

#### Gerar um novo Boleto

[](#gerar-um-novo-boleto)

```
$data = [
  "amount" => 2.51,
  "dueDate" => "2024-02-14T07:20:06.153Z",
  "daysAfterDueDateForCancellation" => 30,
  "payerDocument" => "000.000.000-00",
  "payerName" => "Luffrs",
  "payerEmail" => "email@intoapys.com",
  "payerPhone" => "51999999999",
  "payerZipCode" => "91760110",
  "payerNumber" => "123",
  "payerComplement" => "Apto 123",
  "payerNeighborhood" => "Centro",
  "payerCity" => "Salto",
  "payerState" => "AC",
  "payerAddress" => "Rua Principal",
  "messageLine1" => "Message line 1",
  "messageLine2" => "Message line 2",
  "discount1Code" => "NO_DISCOUNT",
  "discount1Rate" => 0,
  "discount1Value" => 0,
  "discount1Date" => null,
  "discount2Code" => "NO_DISCOUNT",
  "discount2Rate" => 0,
  "discount2Value" => 10,
  "discount2Date" => "2024-02-10T00:00:00.000Z",
  "fineCode" => "NO_FINE",
  "fineDate" => null,
  "fineValue" => 0,
  "fineRate" => 0,
  "interestCode" => "EXEMPT",
  "interestDate" => null,
  "interestRate" => 0,
  "interestValue" => 0,
  "finalBeneficiaryName" => "Final Beneficiary",
  "finalBeneficiaryDocument" => "111.111.111-11",
  "finalBeneficiaryZipCode" => "98765432",
  "finalBeneficiaryAddress" => "Rua Final",
  "finalBeneficiaryNeighborhood" => "Bairro Final",
  "finalBeneficiaryCity" => "Final City",
  "finalBeneficiaryState" => "SP",
  "integrationType" => "SICOOB"
];

$response = $boleto->createBoletoTransaction($data);

echo json_encode($response);
```

##### Pix

[](#pix)

```
$pix = new Pix($baseUrl, $jwtToken);
```

#### Gerar novo Pix

[](#gerar-novo-pix)

```
$data = [
  "calendarExpiration" => 86400,
  "debtorName" => "Raphael",
  "debtorDocument" => "XXX.XXX.XXX-XX",
  "amountOriginal" => "10.99",
  "amountModificationType" => 0,
  "payerRequest" => "Esse texto esta limitado a 140 caracteres.",
  "additionalInfos" => [
    [
      "name" => "Campo 1",
      "value" => "Informacao Adicional do PSP-Recebedor"
    ]
  ],
  "integrationType" => "SICOOB"
];

$response = $pix->createPixTransaction($data);

echo json_encode($response);
```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance41

Moderate activity, may be stable

Popularity5

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity28

Early-stage or recently created project

 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

Unknown

Total

1

Last Release

522d ago

### Community

Maintainers

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

---

Top Contributors

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

### Embed Badge

![Health badge](/badges/raphaelvserafim-sdk-intopays/health.svg)

```
[![Health](https://phpackages.com/badges/raphaelvserafim-sdk-intopays/health.svg)](https://phpackages.com/packages/raphaelvserafim-sdk-intopays)
```

###  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)
