PHP code example of brenno-duarte / pagseguro-custom-api
1. Go to this page and download the library: Download brenno-duarte/pagseguro-custom-api 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/ */
brenno-duarte / pagseguro-custom-api example snippets
e 'env.php';
use PagSeguroCustomAPI\PagSeguroExamples;
$example = new PagSeguroExamples();
### Você pode utilizar de 1 a 4 no parâmetro do método `test()`
$product = json_decode((new PagSeguroExamples())->test(1));
### Ao invés de variáveis para definir os endpoints, você pode definir constantes para um projeto real
$rota_boleto = "http://rota-para-gerar-boleto";
$rota_cartao = "http://rota-para-gerar-cartao";
$rota_session = "http://rota-para-gerar-session";
$rota_status = "http://rota-para-gerar-status";