wuxue107/git-webhooks

为 GitHub、GitLab 和 Bitbucket 标准化 webhook 事件

2.0.0 2022-10-16 08:56 UTC

This package is not auto-updated.

Last update: 2024-09-30 04:01:54 UTC


README

Build Status

为 GitHub、GitLab 和 Bitbucket 标准化 webhook 事件

安装

composer require davidbadura/git-webhooks

示例

use DavidBadura\GitWebhooks\EventFactory;

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

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