PHPackages                             swarming/buzzi-laravel - 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. swarming/buzzi-laravel

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

swarming/buzzi-laravel
======================

A service which wraps the functionality of the Buzzi PHPSDK for easy use within the Laravel framework.

0.2.0(8y ago)010proprietaryPHP

Since Apr 11Pushed 8y ago2 watchersCompare

[ Source](https://github.com/swarming/package-buzzi-laravel)[ Packagist](https://packagist.org/packages/swarming/buzzi-laravel)[ Docs](http://swarmingtech.com)[ RSS](/packages/swarming-buzzi-laravel/feed)WikiDiscussions master Synced 2w ago

READMEChangelogDependencies (2)Versions (4)Used By (0)

package-buzzi-laravel
=====================

[](#package-buzzi-laravel)

Buzzi for the PHP framework Laravel

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

[](#installation)

The recommended way to install swarming/buzzi-laravel is [through composer](http://getcomposer.org).

```
composer require swarming/buzzi-laravel
```

### Lumen

[](#lumen)

In Lumen find the `Register Service Providers` in your `bootstrap/app.php` and register the Buzzi Service Provider.

```
    $app->register(Buzzi\Laravel\ServiceProvider::class);
```

### Laravel

[](#laravel)

In Laravel find the providers key in your config/app.php and register the Buzzi Service Provider.

```
    'providers' => array(
        // ...
        Buzzi\Laravel\ServiceProvider::class,
    )
```

Find the aliases key in your config/app.php and add the Buzzi facade alias.

```
    'aliases' => array(
        // ...
        'Buzzi' => Buzzi\Laravel\Facade::class,
    )
```

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

[](#configuration)

By default, the package uses the following environment variables to auto-configure the plugin without modification:

```
BUZZI_API_ID
BUZZI_API_SECRET

```

To customize the configuration file, publish the package configuration using Artisan.

```
php artisan vendor:publish
```

Update your settings in the generated `app/config/buzzi.php` configuration file.

```
return [

    'api' => [
        'id'     => env('BUZZI_API_ID',     ''),
        'secret' => env('BUZZI_API_SECRET', '')
    ]

];
```

Usage
-----

[](#usage)

In order to use the Buzzi SDK for PHP within your app, you need to retrieve it from the [Laravel Service Container](https://laravel.com/docs/5.4/container). The following example uses the Buzzi client to send an event.

```
$buzzi = App::make('buzzi');

$buzzi->send('buzzi.ecommerce.test', ["message" => "Hello, World", "timestamp" => date(DATE_ATOM)]);
```

If the Buzzi facade is registered within the `aliases` section of the application configuration, you can also use the following technique.

```
Buzzi::send('buzzi.ecommerce.test', ["message" => "Hello, World", "timestamp" => date(DATE_ATOM)]);
```

###  Health Score

24

—

LowBetter than 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity5

Limited adoption so far

Community4

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

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 ~101 days

Total

3

Last Release

3163d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/1642858?v=4)[Swarming](/maintainers/swarming)[@swarming](https://github.com/swarming)

---

Tags

phplaravelsdkbuzzi

### Embed Badge

![Health badge](/badges/swarming-buzzi-laravel/health.svg)

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

###  Alternatives

[gehrisandro/tailwind-merge-laravel

TailwindMerge for Laravel merges multiple Tailwind CSS classes by automatically resolving conflicts between them

341790.3k28](/packages/gehrisandro-tailwind-merge-laravel)[markwalet/nova-modal-response

A Laravel Nova asset for Modal responses on an action.

17818.7k](/packages/markwalet-nova-modal-response)[mozex/anthropic-laravel

Laravel integration for the Anthropic API: facade, config publishing, install command, testing fakes, messages, streaming, tool use, thinking, and batches.

72287.1k1](/packages/mozex-anthropic-laravel)[iteks/laravel-enum

A comprehensive Laravel package providing enhanced enum functionalities, including attribute handling, select array conversions, and fluent facade interactions for robust enum management in Laravel applications.

2518.6k](/packages/iteks-laravel-enum)[tomshaw/electricgrid

A feature-rich Livewire package designed for projects that require dynamic, interactive data tables.

119.2k](/packages/tomshaw-electricgrid)

PHPackages © 2026

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