# git-webhooks **Repository Path**: wuxue107/git-webhooks ## Basic Information - **Project Name**: git-webhooks - **Description**: Fork from https://github.com/sunkan/git-webhooks - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-10-16 - **Last Updated**: 2022-10-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # git-webhooks ![Build Status](https://github.com/sunkan/git-webhooks/workflows/CI/badge.svg?branch=sunkan&event=push) normalise webhook events for github, gitlab and bitbucket Installation ------------ ```bash composer require davidbadura/git-webhooks ``` Example ------- ```php use DavidBadura\GitWebhooks\EventFactory; $request = Psr17Factory::createFromGlobals(); $factory = EventFactory::createDefault(); if ($event = $factory->create($request)) { // ... } ```