PHPackages                             putheng/webhooks - 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. putheng/webhooks

ActiveLibrary

putheng/webhooks
================

Laravel webhooks package

1.0(7y ago)06PHPPHP &gt;=7.0

Since Jan 30Pushed 7y ago1 watchersCompare

[ Source](https://github.com/putheng/webhooks)[ Packagist](https://packagist.org/packages/putheng/webhooks)[ RSS](/packages/putheng-webhooks/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (1)Dependencies (1)Versions (2)Used By (0)

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

[](#installation)

Require this package with composer.

```
composer require putheng/webhooks

```

Laravel 5.5 uses Package Auto-Discovery, so doesn't require you to manually add the ServiceProvider.

### Setting up from scratch

[](#setting-up-from-scratch)

#### Laravel 5.5+:

[](#laravel-55)

If you don't use auto-discovery, add the ServiceProvider to the providers array in `config/app.php`

```
Putheng\Webhooks\WebhooksServiceProvider::class,
```

#### Schema

[](#schema)

For Laravel 5 migration `php artisan migrate`

#### Model

[](#model)

#### Event

[](#event)

Add `WebhookEventSubscriber` to `protected $subscribe` property on `EventServiceProvider`. We can create if `protected $subscribe` property doesn't exists

```
protected $subscribe = [
    \Putheng\Webhooks\Listeners\WebhookEventSubscriber::class
];
```

Create an event `php artisan event:webhook EventName`

Update`public $webhookName` property on `EventName` that we just generated. this name should match `event` column on `webhook_preferences` table. by default this use snake\_case of reflection class. example: `EventName` will be `event_name` by default

```
public $webhookName = 'name';
```

#### Queue

[](#queue)

by default webhook event queue will be set onQueue to `webhooks`. if we set queue connection to database, artisan command should be `php artisan queue:listen --queue=webhooks`

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity55

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

Unknown

Total

1

Last Release

2663d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/1a517c33df877331a2ef37a0b9bfef3ffed53756b3ebb3c33f4a8713c075a9ec?d=identicon)[putheng](/maintainers/putheng)

---

Top Contributors

[![putheng](https://avatars.githubusercontent.com/u/19757130?v=4)](https://github.com/putheng "putheng (10 commits)")

### Embed Badge

![Health badge](/badges/putheng-webhooks/health.svg)

```
[![Health](https://phpackages.com/badges/putheng-webhooks/health.svg)](https://phpackages.com/packages/putheng-webhooks)
```

###  Alternatives

[neuron-core/neuron-ai

The PHP Agentic Framework.

1.8k245.3k21](/packages/neuron-core-neuron-ai)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3731.2M42](/packages/tencentcloud-tencentcloud-sdk-php)[aedart/athenaeum

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

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

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