sabbajohn/pulse-php

Framework-agnostic PHP client for the VoraPulse API.

Maintainers

Package info

github.com/sabbajohn/pulse-php

pkg:composer/sabbajohn/pulse-php

Statistics

Installs: 17

Dependents: 1

Suggesters: 0

Stars: 0

Open Issues: 0

0.1.0 2026-05-16 17:48 UTC

This package is not auto-updated.

Last update: 2026-05-18 18:10:23 UTC


README

Cliente PHP framework-agnostic para a API v2 do VoraPulse.

Instalacao

composer require sabbajohn/pulse-php

Uso

use Sabbajohn\PulsePhp\PulseClient;

$pulse = new PulseClient('https://pulse.example.com', 'api-token');

$pulse->emails()->sendSync([
    'to' => [['email' => 'cliente@example.com']],
    'subject' => 'Bem-vindo',
    'html' => '<p>Ola!</p>',
]);

$pulse->automations()->trigger('pedido.criado', ['id' => 123]);

Servicos

  • emails()
  • templates()
  • composer()
  • campaigns()
  • audiences()
  • automations()
  • calendar()
  • whatsapp()