Skip to content

Instantly share code, notes, and snippets.

View bsilva0x87's full-sized avatar

Bruno C. Silva bsilva0x87

View GitHub Profile
@bsilva0x87
bsilva0x87 / ZAPPY_API_DOCS.md
Last active November 4, 2025 21:02
WS ZAPPYPAG - API Documentation

ZAPPY

WS ZAPPYPAG - API Documentation

ZAPPY is a Banking as a Service (BaaS) integration platform. It provides a secure, compliant infrastructure for banking operations by integrating with FitBank as the primary banking provider.

The platform enables:

  • Digital Banking Operations: Account management, transactions, and banking services via FitBank integration
  • PIX Integration: Brazilian instant payment system with QR code generation, payments, and key management
  • Identity & Access Management: JWT-based authentication and session management
@bsilva0x87
bsilva0x87 / PrintSchemaCommand.php
Created October 12, 2019 15:35
Simple implementation for command "lighthouse:print-schema" to compile the final GraphQL schema using Lighthouse / Lumen PHP.
<?php
namespace Nuwave\Lighthouse\Console;
use Nuwave\Lighthouse\GraphQL;
use Illuminate\Console\Command;
use GraphQL\Utils\SchemaPrinter;
class PrintSchemaCommand extends Command
{