spartaksun / gitlab-hook-php
Framework agnostic handler for GitLab project hooks
Installs: 1 589
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- ext-json: *
Requires (Dev)
- phpunit/phpunit: ^8.5
This package is auto-updated.
Last update: 2024-12-29 00:51:49 UTC
README
Framework agnostic handling GitLab project hooks
Install:
composer require spartaksun/gitlab-hook-php
Usage:
<?php use Spartaksun\GitLabHook\Entity\CodeSnippetComment; use Spartaksun\GitLabHook\GitLabHook; require 'vendor/autoload.php'; $key = 'your_secret_key'; $hook = new GitLabHook($key); /** @var $requestBody string */ /** @var CodeSnippetComment $result */ $result = $hook->process($key, $requestBody);