PHP code example of clubfixinsurtech / valorembiz

1. Go to this page and download the library: Download clubfixinsurtech/valorembiz library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

clubfixinsurtech / valorembiz example snippets




$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);