PHPackages                             hofmannsven/laravel-brevo - 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. [API Development](/categories/api)
4. /
5. hofmannsven/laravel-brevo

ActiveLibrary[API Development](/categories/api)

hofmannsven/laravel-brevo
=========================

Laravel wrapper for Brevo's API v3 PHP library.

2.2.1(4mo ago)3572.9k↓17.2%5[1 issues](https://github.com/hofmannsven/laravel-brevo/issues)MITPHPPHP ^8.1CI passing

Since Nov 5Pushed 4mo ago2 watchersCompare

[ Source](https://github.com/hofmannsven/laravel-brevo)[ Packagist](https://packagist.org/packages/hofmannsven/laravel-brevo)[ Docs](https://github.com/hofmannsven/laravel-brevo)[ RSS](/packages/hofmannsven-laravel-brevo/feed)WikiDiscussions main Synced 2w ago

READMEChangelog (10)Dependencies (18)Versions (18)Used By (0)

[![Laravel Brevo](https://raw.githubusercontent.com/hofmannsven/laravel-brevo/main/art/banner.png)](https://hofmannsven.com/?ref=github)

Laravel Brevo
=============

[](#laravel-brevo)

[![Latest Version on Packagist](https://camo.githubusercontent.com/c7169d7bad497f2b49b9718542f8de0231c761581d76a8339bb3c31e62d38926/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f686f666d616e6e7376656e2f6c61726176656c2d627265766f2e7376673f6c6162656c436f6c6f723d32333265346126636f6c6f723d353535393762267374796c653d666f722d7468652d6261646765)](https://packagist.org/packages/hofmannsven/laravel-brevo)[![GitHub Tests Action Status](https://camo.githubusercontent.com/f21530dd06df32465c7be08ab68f132cdf8e3ec5acea211285b1333e5b3b826f/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f616374696f6e732f776f726b666c6f772f7374617475732f686f666d616e6e7376656e2f6c61726176656c2d627265766f2f72756e2d74657374732e796d6c3f6272616e63683d6d61696e266c6162656c3d7465737473266c6162656c436f6c6f723d32333265346126636f6c6f723d353535393762267374796c653d666f722d7468652d6261646765)](https://github.com/hofmannsven/laravel-brevo/actions?query=workflow%3Arun-tests+branch%3Amain)[![GitHub license](https://camo.githubusercontent.com/d93e1a6ec6ece36d5e3fbef27815e36ad6f06117ca6a1ee5dea85b0502dc1eee/68747470733a2f2f696d672e736869656c64732e696f2f6769746875622f6c6963656e73652f686f666d616e6e7376656e2f6c61726176656c2d627265766f2e7376673f6c6162656c436f6c6f723d32333265346126636f6c6f723d353535393762267374796c653d666f722d7468652d6261646765)](https://raw.githubusercontent.com/hofmannsven/laravel-brevo/master/LICENSE.md)

This package is a wrapper for [Brevo's API v3 PHP library](https://github.com/getbrevo/brevo-php).

Tested with PHP versions 8.1, 8.2, 8.3, 8.4, and 8.5 on Laravel 10, Laravel 11, Laravel 12, and Laravel 13.

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

[](#installation)

You can install the package via Composer:

```
composer require hofmannsven/laravel-brevo
```

### Publish the config files

[](#publish-the-config-files)

Publish package config files:

```
php artisan vendor:publish --provider="Hofmannsven\Brevo\BrevoServiceProvider"
```

### Set the API Key

[](#set-the-api-key)

In your `.env` file, add your Brevo API key:

```
BREVO_API_KEY=xxx

```

Usage
-----

[](#usage)

```
use Hofmannsven\Brevo\Facades\Brevo;

// Account
$result = Brevo::AccountApi()->getAccount();
var_dump($result);

// Domains
$result = Brevo::DomainsApi()->getDomains();
var_dump($result);

// Contacts
$result = Brevo::ContactsApi()->getContacts();
var_dump($result);

// With custom client
$result = Brevo::AccountApi(
    new \GuzzleHttp\Client()
)->getAccount();
```

Available APIs
--------------

[](#available-apis)

Use any `getbrevo/brevo-php` API (see [supported functions](https://developers.brevo.com/docs/available-functions-in-api-clients)):

- AccountApi
- AttributesApi
- CompaniesApi
- ContactsApi
- ConversationsApi
- CouponsApi
- CRMApi
- DealsApi
- DomainsApi
- EcommerceApi
- EmailCampaignsApi
- EventsApi
- ExternalFeedsApi
- FilesApi
- FoldersApi
- InboundParsingApi
- ListsApi
- MasterAccountApi
- NotesApi
- ProcessApi
- ResellerApi
- SendersApi
- SMSCampaignsApi
- TasksApi
- TransactionalEmailsApi
- TransactionalSMSApi
- TransactionalWhatsAppApi
- UserApi
- WebhooksApi
- WhatsAppCampaignsApi

Development
-----------

[](#development)

### Code Style Fixer

[](#code-style-fixer)

```
composer format
```

### Testing

[](#testing)

```
composer test
```

Changelog
---------

[](#changelog)

Please read the [changelog](https://github.com/hofmannsven/laravel-brevo/blob/master/CHANGELOG.md) for more information about recent changes.

Contributing
------------

[](#contributing)

Please read the [contribution guidelines](https://github.com/hofmannsven/laravel-brevo/blob/master/.github/CONTRIBUTING.md) for details.

Support
-------

[](#support)

Always feel free to [raise an issue](https://github.com/hofmannsven/laravel-brevo/issues) on GitHub.

Security
--------

[](#security)

If you discover a security issue, please contact me directly. My GPG fingerprint/key is available on [Keybase](https://keybase.io/hofmannsven).

Credits
-------

[](#credits)

- [Sven Hofmann](https://github.com/hofmannsven)
- [All Contributors](https://github.com/hofmannsven/laravel-brevo/graphs/contributors)

License
-------

[](#license)

MIT License (MIT). Please read the [license](LICENSE.md) for more information.

Laravel and the Laravel logo are trademarks of Taylor Otwell. Banner image generated with banners.beyondco.de

###  Health Score

53

—

FairBetter than 96% of packages

Maintenance77

Regular maintenance activity

Popularity43

Moderate usage in the ecosystem

Community14

Small or concentrated contributor base

Maturity61

Established project with proven stability

 Bus Factor1

Top contributor holds 94.6% 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 ~59 days

Recently: every ~82 days

Total

16

Last Release

120d ago

Major Versions

0.1.1 → 1.0.02023-11-13

1.2.4 → 2.0.02025-02-03

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1214387?v=4)[Sven](/maintainers/hofmannsven)[@hofmannsven](https://github.com/hofmannsven)

---

Top Contributors

[![hofmannsven](https://avatars.githubusercontent.com/u/1214387?v=4)](https://github.com/hofmannsven "hofmannsven (35 commits)")[![claude](https://avatars.githubusercontent.com/u/81847?v=4)](https://github.com/claude "claude (1 commits)")[![marcorieser](https://avatars.githubusercontent.com/u/2395800?v=4)](https://github.com/marcorieser "marcorieser (1 commits)")

---

Tags

brevolaravellaravelbrevo

###  Code Quality

TestsPHPUnit

Code StyleLaravel Pint

### Embed Badge

![Health badge](/badges/hofmannsven-laravel-brevo/health.svg)

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

###  Alternatives

[dedoc/scramble

Automatic generation of API documentation for Laravel applications.

2.2k12.6M140](/packages/dedoc-scramble)[defstudio/telegraph

A laravel facade to interact with Telegram Bots

818355.4k3](/packages/defstudio-telegraph)[psalm/plugin-laravel

Psalm plugin for Laravel

3345.4M354](/packages/psalm-plugin-laravel)[neuron-core/neuron-laravel

Official Neuron AI Laravel SDK.

11747.5k1](/packages/neuron-core-neuron-laravel)[simplestats-io/laravel-client

Server-side analytics for Laravel that follows the full funnel from visit to registration to payment, attributed to the channel that drove it. Revenue, MRR, churn and ad-spend profit (ROAS/CAC) per channel. GDPR compliant, ad-blocker proof.

5226.7k](/packages/simplestats-io-laravel-client)[api-platform/laravel

API Platform support for Laravel

58190.1k21](/packages/api-platform-laravel)

PHPackages © 2026

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