Skip to main content
Projects / juststeveking/webhooks

juststeveking/webhooks

The simplest way to start sending webhooks in PHP.

4
Stars
📦
9
Downloads
📈
0
Monthly

Latest Version Software License PHP Version Total Downloads

The simplest way to start sending webhooks in PHP.

Installation

You can install this library using composer:

composer require juststeveking/webhooks

The next step is to install a OSR compliant package to do the request itself, you will need:

  • PSR 7 Request Library
  • PSR17 Request and Stream Factories
  • PSR18 Http Client

This package will auto-discover these packages you have installed for you, so you not need to wire anything up.

Usage

This package is super simple to get started with, all you need to do is build one class and you can start sending webhooks.

use JustSteveKing\Webhooks\Webhook;

class YourWebhook extends Webhook
{
    public function headers(): array
    {
        $signature = hash_hmac(
            algo: 'sha256',
            data: \Safe\json_encode(
                value: $this->buildPayload(),
                flags: JSON_THROW_ON_ERROR,
            ),
            key: 'Your signing key goes here',
        );

        return [
            'Content-Type' => 'application/json',
            'Signature' => $signature,
        ];
    }

    public function buildPayload(): array
    {
        return [
            'foo' => 'bar',
        ];
    }

    public function url(): string
    {
        return 'Your URL goes here.';
    }

    public function method(): Method
    {
        return Method::POST;
    }

    public function plugins(): array
    {
        return [];
    }
}

The HTTP Client used for sending your HTTP requests supports plugins, you can see how these work here.

Tests

There is a composer script available to run the tests:

composer test

However, if you are unable to run this please use the following command:

./vendor/bin/pest

Security

If you discover any security related issues, please email juststevemcd@gmail.com instead of using the issue tracker.

Last updated: 12/5/2025
← Back to all projects
NORMAL
~/projects
command-repl
NORMAL ESC
# Command REPL - Type 'help' for available commands
↑↓ history Tab complete Enter execute
Ctrl+C clear ESC close