This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
host: api.zoop.ws | |
info: | |
title: Zoop Payments API | |
version: "1.0" | |
description: | | |
Essa documentação descreve os recursos que compõem a API Zoop, em | |
conformidade com os princípios de design REST. | |
Todas as respostas da API estão no formato de dados JSON. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
info: | |
description: Planos e Assinaturas | |
version: 1.0.0 | |
title: Planos e Assinaturas | |
basePath: /v2 | |
host: api.zoop.ws | |
securityDefinitions: | |
basicAuth: | |
type: basic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
x-api-id: 'notificações-e-eventos' | |
host: api.zoop.ws | |
info: | |
title: Notificações e Eventos | |
version: "1.1" | |
securityDefinitions: | |
basicAuth: | |
type: basic |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
host: api.zoop.ws | |
info: | |
title: Pagamentos e Transferências | |
version: "1.1" | |
securityDefinitions: | |
basicAuth: | |
type: basic | |
security: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
host: api.zoop.ws | |
info: | |
title: Métodos de Cobrança | |
version: "1.1" | |
securityDefinitions: | |
basicAuth: | |
type: basic | |
security: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
host: api.zoop.ws | |
info: | |
title: Objetos Base | |
version: "1.1" | |
securityDefinitions: | |
basicAuth: | |
type: basic | |
security: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
host: api.zoop.ws | |
info: | |
title: Usuários e API Keys | |
version: "1.1" | |
securityDefinitions: | |
basicAuth: | |
type: basic | |
security: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
swagger: '2.0' | |
host: api.zoop.ws | |
info: | |
title: Métodos de Cobrança | |
version: "1.1" | |
securityDefinitions: | |
basicAuth: | |
type: basic | |
security: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Transformers; | |
use Eduardokum\LaravelBoleto\Boleto\Render\AbstractPdf; | |
use Eduardokum\LaravelBoleto\Contracts\Boleto\Boleto as BoletoContract; | |
use Eduardokum\LaravelBoleto\Contracts\Boleto\Render\Pdf as PdfContract; | |
use Eduardokum\LaravelBoleto\Util; | |
class PdfCarne extends AbstractPdf implements PdfContract |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
RUN apt update | |
RUN apt upgrade -y | |
RUN apt install -y apt-utils | |
RUN a2enmod rewrite | |
RUN apt install -y libmcrypt-dev | |
RUN docker-php-ext-install mcrypt | |
RUN apt install -y libicu-dev | |
RUN docker-php-ext-install -j$(nproc) intl | |
RUN apt-get install -y libfreetype6-dev libjpeg62-turbo-dev libpng12-dev | |
RUN docker-php-ext-configure gd --with-freetype-dir=/usr/include/ --with-jpeg-dir=/usr/include/ |
OlderNewer