This library offers a set of tools which could become handy when dealing with GitHub web hook requests.
The recommended way to install this library is through Composer:
composer require "swop/github-webhook"
The SignatureValidator
will verify if the incoming GitHub web hook request is correctly signed.
use Swop\GitHubWebHook\Security\SignatureValidator;
$validator = new SignatureValidator();
/** @var \Psr\Http\Message\ServerRequestInterface $request */
if ($validator->validate($request, 'secret')) {
// Request is correctly signed
}
The GitHubEventFactory
can build GitHubEvent objects representing the GitHub event.
use Swop\GitHubWebHook\Event\GitHubEventFactory;
$factory = new GitHubEventFactory();
/** @var \Psr\Http\Message\ServerRequestInterface $request */
$gitHubEvent = $factory->buildFromRequest(RequestInterface $request);
$gitHubEvent->getType(); // Event type
$gitHubEvent->getPayload(); // Event deserialized payload
See CONTRIBUTING file.
- Sylvain MAUDUIT (@Swop) as main author.
This library is released under the MIT license. See the complete license in the bundled LICENSE file.