Installs
0Version
unknownLicense
unknownInstallation
composer require laravel-shield/github
Usage
After installing add the following configuration to your config/shield.php
file:
'services' => [
'github' => [
'driver' => \Shield\GitHub\GitHub::class,
'options' => [
'token' => 'your-webhook-token'
]
]
]
You can now add the middleware to your routes like so:
Route::middleware('shield:github')->post('/hooks/github', '[email protected]');