Download the PHP package snb4crazy/webhook-manager-laravel without Composer

On this page you can find all versions of the php package snb4crazy/webhook-manager-laravel. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package webhook-manager-laravel

webhook-manager-laravel

Latest Release PHP Laravel Last Commit

Queue-aware webhook delivery package for Laravel with HMAC signing, signature verification, retries, and delivery logs.

Features

Requirements

Dependency Version
PHP 8.2+
Laravel 10-13

Installation

Option A: Before Packagist (GitHub VCS)

Use this until the package is published on Packagist.

  1. Add repository source in your app composer.json:

  2. Require the package from the master branch:

Option B: After Packagist (recommended)

Once v0.1.0 is tagged and synced to Packagist:

Then run the same setup steps:

  1. Publish config + migrations and migrate:

  2. If queue delivery is enabled (default), run a queue worker:

Configuration

Set package options in .env:

Quick start

Send a webhook

Verify an incoming webhook

Retry a failed delivery

Delivery logs

Each call to Webhook::send() creates/updates a row in webhook_deliveries:

This table is useful for admin screens, incident investigation, and manual replay tools.

User stories

Story How to do it with this package
As a SaaS provider, I need to notify customers when an event happens. Call Webhook::send($url, $payload, ['event' => '...']) from your domain event listener/job.
As a receiver, I need to trust only authentic webhook calls. Validate X-Webhook-Signature with Webhook::verify($rawBody, $signature, $secret).
As an operator, I need to recover from transient outages. Keep queue mode enabled, tune WEBHOOK_MANAGER_MAX_ATTEMPTS, and use Webhook::retry($deliveryId) for manual replay.
As a support engineer, I need auditability for deliveries. Query the webhook_deliveries table for failures, response codes, and attempt history.

Recommended badges

Already included above:

Useful additions once available:

Testing

License

MIT


All versions of webhook-manager-laravel with dependencies

PHP Build Version
Package Version
Requires php Version ^8.2
illuminate/contracts Version ^10.0|^11.0|^12.0|^13.0
illuminate/http Version ^10.0|^11.0|^12.0|^13.0
illuminate/queue Version ^10.0|^11.0|^12.0|^13.0
illuminate/database Version ^10.0|^11.0|^12.0|^13.0
illuminate/support Version ^10.0|^11.0|^12.0|^13.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package snb4crazy/webhook-manager-laravel contains the following files

Loading the files please wait ...