sunkan/git-webhooks

normalise webhook events for github, gitlab and bitbucket

Maintainers

Package info

github.com/sunkan/git-webhooks

pkg:composer/sunkan/git-webhooks

Statistics

Installs: 3

Dependents: 0

Suggesters: 0

Stars: 0

2.0.0 2020-04-01 13:53 UTC

This package is auto-updated.

Last update: 2026-03-01 00:31:02 UTC


README

Build Status

normalise webhook events for github, gitlab and bitbucket

Installation

composer require davidbadura/git-webhooks

Example

use DavidBadura\GitWebhooks\EventFactory;

$request = Psr17Factory::createFromGlobals();
$factory = EventFactory::createDefault();

if ($event = $factory->create($request)) {
    // ...
}