Download the PHP package faaren-tech/webhook-receiver without Composer
On this page you can find all versions of the php package faaren-tech/webhook-receiver. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download faaren-tech/webhook-receiver
More information about faaren-tech/webhook-receiver
Files in faaren-tech/webhook-receiver
Package webhook-receiver
Short Description Build to receive webhooks.
License MIT
Informations about the package webhook-receiver
FAAREN-Tech
Open Tasks
- Add authorization logic (e.g. for Stripe)
- Custom table name
Webhook Receiver
This package will be used by all FAAREN Services which receive webhooks. It provides a basic structure to handle incoming webhooks.
With this package you can simply define new endpoints for webhooks. Those webhooks will be stored within a database. Via a simple HandlerInterface you can define custom handlers for each of your endpoints.
This package also offers a basic CRUD functionality to interact with your stored webhooks via the Webhook
model.
Installation
Call the following command:
The package is tested only for Laravel 8.x.
Config
Publish the relevant configuration file via (select the WebhookReceiverServiceProvider from the shown list):
- You can customize the middleware separately for webhook endpoints and crud-routes.
- You can customize the prefix for both the webhook endpoints and the crud-routes.
Creating new endpoints
It is very easy to add new endpoints to your application.
- Create a new webhook handler, e.g.
MyExampleWebhookHandler
withinapp/Http/WebhookEndpoints
- Implement
FaarenTech\WebhookReceiver\Interfaces\WebhookEndpointHandlerInterface
- Add the endpoint to your
config/webhook_receiver
configuration file (see below) - Set up your new endpoint within your webhook sender (e.g. MailJet, Stripe, etc) for the endpoint
webhook/endpoints/my-example-endpoint
Example files
If you want you can take a look at the following files:
- ExampleRequests: Some simple examples. Can be executed directly from your favorite IDE (PhpStorm ;-))
- ExampleHandler: a example implementation
Testing
Add the relevant testsuite to your main phpunit.xml: