sunkan/

为github、gitlab和bitbucket标准化webhook事件

2.0.0 2020-04-01 13:53 UTC

This package is auto-updated.

Last update: 2024-08-29 06:07:15 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)) {
    // ...
}