Skip to content

Instantly share code, notes, and snippets.

View dmsysop's full-sized avatar

Douglas M. dmsysop

  • Gazin Tech
  • Umuarama / Maringá - PR
  • X @dmsysop
View GitHub Profile
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.
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
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
swagger: '2.0'
host: api.zoop.ws
info:
title: Pagamentos e Transferências
version: "1.1"
securityDefinitions:
basicAuth:
type: basic
security:
swagger: '2.0'
host: api.zoop.ws
info:
title: Métodos de Cobrança
version: "1.1"
securityDefinitions:
basicAuth:
type: basic
security:
swagger: '2.0'
host: api.zoop.ws
info:
title: Objetos Base
version: "1.1"
securityDefinitions:
basicAuth:
type: basic
security:
@dmsysop
dmsysop / Zoop Users API
Created January 25, 2020 01:33
Zoop Users API
swagger: '2.0'
host: api.zoop.ws
info:
title: Usuários e API Keys
version: "1.1"
securityDefinitions:
basicAuth:
type: basic
security:
swagger: '2.0'
host: api.zoop.ws
info:
title: Métodos de Cobrança
version: "1.1"
securityDefinitions:
basicAuth:
type: basic
security:
@dmsysop
dmsysop / PdfCarne.php
Created January 29, 2020 13:19 — forked from ibrunotome/PdfCarne.php
Layout carnê para o laravel-boleto.
<?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
@dmsysop
dmsysop / php-docker-ext
Created May 12, 2022 19:19 — forked from hoandang/php-docker-ext
Complete list of php docker ext
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/