Download the PHP package andreagroferreira/laravel-webhook-owlery without Composer

On this page you can find all versions of the php package andreagroferreira/laravel-webhook-owlery. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.

FAQ

After the download, you have to make one include require_once('vendor/autoload.php');. After that you have to import the classes with use statements.

Example:
If you use only one package a project is not needed. But if you use more then one package, without a project it is not possible to import the classes with use statements.

In general, it is recommended to use always a project to download your libraries. In an application normally there is more than one library needed.
Some PHP packages are not free to download and because of that hosted in private repositories. In this case some credentials are needed to access such packages. Please use the auth.json textarea to insert credentials, if a package is coming from a private repository. You can look here for more information.

  • Some hosting areas are not accessible by a terminal or SSH. Then it is not possible to use Composer.
  • To use Composer is sometimes complicated. Especially for beginners.
  • Composer needs much resources. Sometimes they are not available on a simple webspace.
  • If you are using private repositories you don't need to share your credentials. You can set up everything on our site and then you provide a simple download link to your team member.
  • Simplify your Composer build process. Use our own command line tool to download the vendor folder as binary. This makes your build process faster and you don't need to expose your credentials for private repositories.
Please rate this library. Is it a good library?

Informations about the package laravel-webhook-owlery

Laravel Webhook Owlery

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

A robust and feature-complete webhook management system for Laravel applications. Laravel Webhook Owlery handles both sending and receiving webhooks with extensive validation, security, and monitoring capabilities.

โœ… All unit tests passing! The package is now fully functional and ready for use. Feature tests are currently being refined.

๐Ÿ” Features

๐Ÿ“ฅ Installation

You can install the package via composer:

After installing the package, publish the configuration file and migrations:

Optional Dependencies

The package supports various signature validation methods. Some of these require additional libraries:

JWT Validation

To use JWT signature validation, you need to install the Firebase JWT library:

Without this library, JWT validation will not be available, and the related tests will be skipped with a "JWT library not installed" message.

โšก Quick Start

Receiving Webhooks

  1. Configure an endpoint in your webhook-owlery.php config file:

  2. Create a handler for incoming webhooks:

  3. Register your handler in your EventServiceProvider:

That's it! Your application is now ready to receive webhooks at /api/webhooks/stripe.

Sending Webhooks

Command-line Tools

The package includes several useful Artisan commands:

๐Ÿ”ง Configuration

Basic Configuration

The configuration file provides extensive options for customizing the behavior of the package:

Endpoint Configuration

Complete Configuration Example

๐Ÿ› ๏ธ Usage Examples

Managing Webhook Subscriptions

Adding a New Provider

1. Create a Provider-Specific Request

2. Create a Provider-Specific Validator

3. Register the Provider in a Service Provider

4. Add Configuration for the Provider

Update your config/webhook-owlery.php file:

5. Create an Event Listener for the Provider

6. Register the Event Listener

In your EventServiceProvider.php:

Custom Signature Validation

Register your custom validator in a service provider:

Advanced Webhook Dispatch

Real-World Example: E-commerce Order Flow

Real-World Example: SaaS User Onboarding

Handling Incoming Webhooks: Stripe Example

Building a Customized Webhook Dispatcher

This example shows how to extend the basic functionality with a specialized webhook dispatcher:

Usage of the custom dispatcher:

๐Ÿงช Testing

The package ships with a comprehensive test suite using Pest PHP.

Running Unit Tests

To run the unit tests (all currently passing):

Output:

Note: Feature tests are currently being refined and will be available in a future release. The core functionality is fully tested with unit tests.

GitHub Actions CI

The CI pipeline is configured to run all unit tests against multiple PHP and Laravel versions. Feature tests are excluded from the CI pipeline until they are fully stabilized in a future release.

Note: The skipped tests for JWT validation will automatically run if you install the Firebase JWT library with composer require firebase/php-jwt. This is expected behavior as the JWT functionality is considered optional.

Writing Tests for Webhook Handling

โš™๏ธ Artisan Commands

Laravel Webhook Owlery comes with several helpful Artisan commands:

Generate Webhook Secret

Generates a secure random string to use as a webhook secret. Options include:

List Webhook Endpoints

Lists all configured webhook endpoints with their status. Available filters:

Cleanup Webhooks

Removes old webhook data based on your retention settings. Options include:

๐Ÿ“Š Dashboard Integration

Laravel Webhook Owlery is designed to be dashboard-friendly. Its data structures make it easy to build monitoring dashboards with information on:

Example Dashboard Queries

๐Ÿ”’ Security

Webhook Owlery takes security seriously:

Signature Validation Methods

The package supports multiple signature validation methods:

  1. HMAC Signatures - The default and most common method (no additional dependencies required)
  2. JWT Validation - Requires the Firebase JWT library (composer require firebase/php-jwt)
  3. API Key Validation - Simple validation with API keys (no additional dependencies required)
  4. Basic Auth Validation - Username/password validation (no additional dependencies required)
  5. Custom Validators - Create your own validators for specific providers

Security Best Practices

  1. Always use HTTPS for webhook endpoints
  2. Rotate webhook secrets periodically
  3. Use the built-in rate limiting to prevent abuse
  4. Monitor webhook deliveries for unusual patterns
  5. Use the circuit breaker to prevent cascading failures
  6. Validate all incoming webhook data before processing
  7. Store webhook secrets securely using environment variables
  8. Choose the appropriate validation method based on your security requirements

๐Ÿ“– Changelog

Please see CHANGELOG for more information on what has changed recently.

๐Ÿค Contributing

Please see CONTRIBUTING for details.

๐Ÿ” Security Vulnerabilities

If you discover any security vulnerabilities, please follow our security policy.

๐Ÿ“„ License

The MIT License (MIT). Please see License File for more information.

๐Ÿš€ Development Status

The package is now fully functional with all tests passing. The following components have been implemented:

Release Checklist

The package is ready for a v1.0.0 production release! All of the following have been completed:

To publish the package to Packagist:

  1. Push the code to a GitHub repository
  2. Create a tag for v1.0.0
  3. Register the package on Packagist.org

Feel free to explore the codebase and contribute to make this package even better!


All versions of laravel-webhook-owlery with dependencies

PHP Build Version
Package Version
Requires php Version ^8.1|^8.2|^8.3|^8.4
illuminate/support Version ^10.0|^11.0|^12.0
illuminate/http Version ^10.0|^11.0|^12.0
illuminate/database Version ^10.0|^11.0|^12.0
illuminate/queue Version ^10.0|^11.0|^12.0
illuminate/redis Version ^10.0|^11.0|^12.0
guzzlehttp/guzzle Version ^7.0
spatie/laravel-package-tools Version ^1.9
ramsey/uuid Version ^4.0
Composer command for our command line client (download client) This client runs in each environment. You don't need a specific PHP version etc. The first 20 API calls are free. Standard composer command

The package andreagroferreira/laravel-webhook-owlery contains the following files

Loading the files please wait ....