├── .gitignore ├── README.md ├── composer.json ├── docs ├── COBRANÇAS │ ├── Alterar um Boleto.md │ ├── Baixar Boleto.md │ ├── Boleto Em PDF │ │ ├── .DS_Store │ │ ├── README.md │ │ ├── bb │ │ │ ├── .DS_Store │ │ │ └── PDFBoleto │ │ │ │ ├── BBBoletoPDF.php │ │ │ │ ├── CSS.php │ │ │ │ └── HTMLBoletoBB.php │ │ └── index.php │ ├── Cancelar Pix Boleto.md │ ├── Consultar Pix Boleto.md │ ├── Detalhar um Boleto.md │ ├── Listar Boletos.md │ ├── Prazo 30 minutos.md │ └── Registrar Boleto.md ├── README.md └── Token │ ├── README.md │ └── Token.md └── src ├── BBBoletoPDF.php ├── BankingBB.php └── BoletoPDF ├── CSS.php └── HTMLBoletoBB.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/composer.json -------------------------------------------------------------------------------- /docs/COBRANÇAS/Alterar um Boleto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Alterar um Boleto.md -------------------------------------------------------------------------------- /docs/COBRANÇAS/Baixar Boleto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Baixar Boleto.md -------------------------------------------------------------------------------- /docs/COBRANÇAS/Boleto Em PDF/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Boleto Em PDF/.DS_Store -------------------------------------------------------------------------------- /docs/COBRANÇAS/Boleto Em PDF/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Boleto Em PDF/README.md -------------------------------------------------------------------------------- /docs/COBRANÇAS/Boleto Em PDF/bb/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Boleto Em PDF/bb/.DS_Store -------------------------------------------------------------------------------- /docs/COBRANÇAS/Boleto Em PDF/bb/PDFBoleto/BBBoletoPDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Boleto Em PDF/bb/PDFBoleto/BBBoletoPDF.php -------------------------------------------------------------------------------- /docs/COBRANÇAS/Boleto Em PDF/bb/PDFBoleto/CSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Boleto Em PDF/bb/PDFBoleto/CSS.php -------------------------------------------------------------------------------- /docs/COBRANÇAS/Boleto Em PDF/bb/PDFBoleto/HTMLBoletoBB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Boleto Em PDF/bb/PDFBoleto/HTMLBoletoBB.php -------------------------------------------------------------------------------- /docs/COBRANÇAS/Boleto Em PDF/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Boleto Em PDF/index.php -------------------------------------------------------------------------------- /docs/COBRANÇAS/Cancelar Pix Boleto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Cancelar Pix Boleto.md -------------------------------------------------------------------------------- /docs/COBRANÇAS/Consultar Pix Boleto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Consultar Pix Boleto.md -------------------------------------------------------------------------------- /docs/COBRANÇAS/Detalhar um Boleto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Detalhar um Boleto.md -------------------------------------------------------------------------------- /docs/COBRANÇAS/Listar Boletos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Listar Boletos.md -------------------------------------------------------------------------------- /docs/COBRANÇAS/Prazo 30 minutos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Prazo 30 minutos.md -------------------------------------------------------------------------------- /docs/COBRANÇAS/Registrar Boleto.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/COBRANÇAS/Registrar Boleto.md -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/Token/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/Token/README.md -------------------------------------------------------------------------------- /docs/Token/Token.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/docs/Token/Token.md -------------------------------------------------------------------------------- /src/BBBoletoPDF.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/src/BBBoletoPDF.php -------------------------------------------------------------------------------- /src/BankingBB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/src/BankingBB.php -------------------------------------------------------------------------------- /src/BoletoPDF/CSS.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/src/BoletoPDF/CSS.php -------------------------------------------------------------------------------- /src/BoletoPDF/HTMLBoletoBB.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/divulgueregional/api-bb-php/HEAD/src/BoletoPDF/HTMLBoletoBB.php --------------------------------------------------------------------------------