An open API service indexing awesome lists of open source software.

https://github.com/nxtlvlsoftware/laravel-github-webhooks

A package to make github webhook handling in your laravel application a breeze.
https://github.com/nxtlvlsoftware/laravel-github-webhooks

api app apps github laravel package php webhooks

Last synced: 3 months ago
JSON representation

A package to make github webhook handling in your laravel application a breeze.

Awesome Lists containing this project

README

          

Laravel GitHub Webhooks
===============
_Make github webhook handling in your laravel application a breeze._

[![Build Status](https://travis-ci.org/NxtLvLSoftware/laravel-github-webhooks.svg?branch=master)](https://travis-ci.org/NxtLvLSoftware/laravel-github-webhooks)

### About

This package provides container injection and controller like handling for each github webhook event available. Out of the
box you can generate a handler for an event with the `php artisan make:gh-webhook {event}` command, this will create a class
under `Http/Webhooks/GitHub` with the corresponding event name and a separate method for each action the webhook will notify
you of.

```php