PHPackages                             cleyverson/brevo-engage - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. cleyverson/brevo-engage

ActiveLibrary[Utility &amp; Helpers](/categories/utility)

cleyverson/brevo-engage
=======================

Provider-agnostic customer engagement and marketing automation for Laravel.

v1.0.3(1mo ago)019↓50%MITPHPPHP ^8.2

Since Jun 14Pushed 1mo agoCompare

[ Source](https://github.com/cleyversoncosta/brevo-engage)[ Packagist](https://packagist.org/packages/cleyverson/brevo-engage)[ RSS](/packages/cleyverson-brevo-engage/feed)WikiDiscussions main Synced 1w ago

READMEChangelog (4)Dependencies (15)Versions (5)Used By (0)

Engage
======

[](#engage)

Provider-agnostic customer engagement and marketing automation for Laravel 10, 11, and 12.

Applications call `Cleyverson\Engage\Facades\Engage`; provider adapters own provider-specific code, so integrations such as Brevo, Mautic, Customer.io, Dittofeed, HubSpot, or Mailchimp can be added without changing application code.

Installation
------------

[](#installation)

```
composer require cleyverson/engage
composer require sarfrazrizwan/laravel-brevo mautic/api-library
php artisan vendor:publish --tag=engage-config
php artisan vendor:publish --tag=engage-migrations
php artisan migrate
```

Configuration
-------------

[](#configuration)

Brevo remains the default provider for backward compatibility:

```
ENGAGE_PROVIDER=brevo
```

To use Mautic:

```
ENGAGE_PROVIDER=mautic

MAUTIC_BASE_URL=
MAUTIC_USERNAME=
MAUTIC_PASSWORD=
```

Published configuration:

```
return [
    'provider' => env('ENGAGE_PROVIDER', 'brevo'),
    'environment' => env('ENGAGE_ENVIRONMENT'),
    'queue' => true,
    'track_events' => true,
    'sync_contacts' => true,
    'templates' => [
        'welcome' => 12,
    ],
    'lists' => [
        'premium-users' => 42,
    ],
    'mautic' => [
        'base_url' => env('MAUTIC_BASE_URL'),
        'username' => env('MAUTIC_USERNAME'),
        'password' => env('MAUTIC_PASSWORD'),
    ],
];
```

Usage
-----

[](#usage)

```
use Cleyverson\Engage\Facades\Engage;

Engage::identify($user);

Engage::identify($user, [
    'project' => 'WalletUP',
    'language' => 'en',
]);

Engage::track('login', $user);

Engage::track('login', $user, [
    'device' => 'mobile',
]);

Engage::addTag('premium', $user);
Engage::removeTag('premium', $user);

Engage::addToSegment('WalletUP', $user);
Engage::removeFromSegment('WalletUP', $user);
```

Existing Brevo list and email helpers continue to work:

```
Engage::sendTemplate('welcome', $user, [
    'first_name' => $user->name,
]);

Engage::addToList('premium-users', $user);
Engage::removeFromList('premium-users', $user);
```

All outbound provider communication is performed by queued jobs. Events are always persisted in the `engagement_events` table before provider delivery; Mautic records stay in that table because Mautic does not expose a Brevo-equivalent custom event API.

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance91

Actively maintained with recent releases

Popularity7

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity49

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~0 days

Total

4

Last Release

44d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/289cfda50d7e9f74387169f9f039230c6e4d4e82100a6cfca8f0c08302d48408?d=identicon)[cleyversoncosta](/maintainers/cleyversoncosta)

---

Top Contributors

[![cleyversoncosta](https://avatars.githubusercontent.com/u/5009979?v=4)](https://github.com/cleyversoncosta "cleyversoncosta (5 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/cleyverson-brevo-engage/health.svg)

```
[![Health](https://phpackages.com/badges/cleyverson-brevo-engage/health.svg)](https://phpackages.com/packages/cleyverson-brevo-engage)
```

###  Alternatives

[psalm/plugin-laravel

Psalm plugin for Laravel

3345.3M348](/packages/psalm-plugin-laravel)[laravel/ai

The official AI SDK for Laravel.

1.0k3.2M251](/packages/laravel-ai)[api-platform/laravel

API Platform support for Laravel

58174.6k17](/packages/api-platform-laravel)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

45444.2k1](/packages/pressbooks-pressbooks)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

255.2k](/packages/aedart-athenaeum)[fleetbase/core-api

Core Framework and Resources for Fleetbase API

1235.9k21](/packages/fleetbase-core-api)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
