1. Go to this page and download the library: Download tongedev/rfb-document 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/ */
tongedev / rfb-document example snippets
// no caso de querer manipular CPF
$cpfClass = new Tongedev\RfbDocument\CPFDocument();
$cpf = $cpfClass->generate(); // retorno: xxxxxxxxxxx (um número de CPF aleatório)
// no caso de querer manipular CNPJ
$cnpjClass = new Tongedev\RfbDocument\CNPJDocument();
$cnpj = $cnpjClass->generate(); // retorno: xxxxxxxxxxx (um número de CNPJ aleatório)
$cpf = CPF::generate(); // retorno: xxxxxxxxxxx (um número de CPF aleatório)
$cnpj = CNPJ::generate(); // retorno: xxxxxxxxxxxxxx (um número de CNPJ aleatório)