clubfixinsurtech/valorembiz

There is no license information available for the latest version (1.0.1) of this package.

Integração com o Gateway de Pagamento Valorem Pay Checkout Business

1.0.1 2025-01-22 13:04 UTC

This package is not auto-updated.

Last update: 2025-04-02 14:00:23 UTC


README

Maintainer Source Code PHP from Packagist Latest Version Software License Build Quality Score Total Downloads

Integration with the ValoremPay payment gateway.

Integração com o Gateway de Pagamento Valorem Pay Checkout Business.

Highlights

  • Simple installation (Instalação simples)
  • Composer ready and PSR-2 compliant (Pronto para o composer e compatível com PSR-2)

Available services

  • Fluxo de pagamento Checkout Transparente
  • Estorno do pagamento
  • Histórico de transações

Installation

Valorem Pay is available via Composer:

composer require clubfixinsurtech/valorembiz

Documentation

For more details on how to use it, see the "examples" folder in the component's directory. It contains an example of how to use the class. It works as follows:

Para obter mais detalhes sobre como utilizar, consulte a pasta "examples" no diretório do componente. Nela, haverá um exemplo de utilização da classe. O funcionamento é o seguinte:

Basic Usage:
<?php

$token = '';
$isSandbox = true;

$connector = new \ValoremBiz\ValoremBizConnector(token: $token, isSandbox: $isSandbox);

// Create payment
$payment = (new \ValoremBiz\Entities\CreatePayment(
    valor: 99.99,
    numeroDeParcelas: 1,
    qtdeCartoes: \ValoremBiz\Enums\CardQuantityEnum::ONE,
))->setCartoes(
    new \ValoremBiz\Entities\Card(
        valor: 99.99,
        numeroDoCartao: '5448280000000007',
        codigoSeguranca: '123',
        mesVencimento: 1,
        anoVencimento: 2028,
        nomeTitular: 'John Doe',
        cpfCnpj: '40834380960',
    )
);

$request = $connector->valoremBiz()->createPayment($payment);
$response = $request->json();

dump($request, $response);

Credits

License

The MIT License (MIT). Please see License File for more information.