wuxue107 / git-webhooks
为 GitHub、GitLab 和 Bitbucket 标准化 webhook 事件
2.0.0
2022-10-16 08:56 UTC
Requires
- php: ^7.2
- ext-json: *
- symfony/http-foundation: *
Requires (Dev)
- phpunit/phpunit: ^8.0
This package is not auto-updated.
Last update: 2024-09-30 04:01:54 UTC
README
为 GitHub、GitLab 和 Bitbucket 标准化 webhook 事件
安装
composer require davidbadura/git-webhooks
示例
use DavidBadura\GitWebhooks\EventFactory;
$request = Psr17Factory::createFromGlobals();
$factory = EventFactory::createDefault();
if ($event = $factory->create($request)) {
// ...
}