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. [API Development](/categories/api)
4. /
5. putheng/webhooks

ActiveLibrary[API Development](/categories/api)

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 3d 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 31% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity4

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity56

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

2709d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/19757130?v=4)[Putheng](/maintainers/putheng)[@putheng](https://github.com/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

[statamic/cms

The Statamic CMS Core Package

4.8k3.6M932](/packages/statamic-cms)[tencentcloud/tencentcloud-sdk-php

TencentCloudApi php sdk

3741.3M46](/packages/tencentcloud-tencentcloud-sdk-php)[neuron-core/neuron-ai

The PHP Agentic Framework.

2.0k656.1k34](/packages/neuron-core-neuron-ai)[eslazarev/wildberries-sdk

Wildberries OpenAPI clients (generated).

252.5k](/packages/eslazarev-wildberries-sdk)[files.com/files-php-sdk

Files.com PHP SDK

2478.1k](/packages/filescom-files-php-sdk)[fschmtt/keycloak-rest-api-client-php

PHP client to interact with Keycloak's Admin REST API.

49108.6k2](/packages/fschmtt-keycloak-rest-api-client-php)

PHPackages © 2026

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