Search by

innoboxrr / make-bridge

Puente de comunicación entre una app y make

Maintainers

Package info

github.com/innoboxrr/make-bridge

pkg:composer/innoboxrr/make-bridge

Transparency log

Statistics

Installs: 5

Dependents: 0

Suggesters: 0

Stars: 0

Open Issues: 0

0.0.1 2025-02-27 18:47 UTC

This package is auto-updated.

Last update: 2026-08-22 18:27:42 UTC


README

Talk to Make (Integromat) from Laravel, both directions.

Trigger Make scenarios from your application, and receive their results back — without hand-rolling webhook plumbing and signature checks every time.

// Fire a scenario and pass it data.
MakeBridge::scenario('onboarding')->trigger([
    'user_id' => $user->id,
    'plan'    => 'pro',
]);
// Receive results as a normal Laravel event.
class ScenarioCompleted
{
    public function handle(MakeScenarioResult $result) { /* ... */ }
}

Why

Make is excellent at the messy integrations you do not want in your codebase — the CRM, the spreadsheet, the notification chain that marketing keeps changing. The awkward part is the boundary: authenticating both ways, validating payloads, and not letting a broken scenario take down a request.

This package is that boundary.

Outbound Trigger scenarios synchronously or queued
Inbound Signed webhook endpoint with payload validation
Events Scenario results arrive as Laravel events
Retries Failed triggers retry with backoff instead of vanishing

Install

composer require innoboxrr/make-bridge
php artisan vendor:publish --tag=make-bridge-config
MAKE_API_TOKEN=...
MAKE_WEBHOOK_SECRET=...

Part of Innobox R&R — 52 open-source packages extracted from production work. innobox.systems