Download the PHP package hello-one/laravel-webhooks without Composer

On this page you can find all versions of the php package hello-one/laravel-webhooks. 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-webhooks

hello one webhooks for Laravel

Securely receive Webhooks from your hello one project.

Installation

1) You can install this package via composer using the following command:

The package will automatically register itself using [package discovery](https://laravel.com/docs/packages#package-discovery).

2) Add your app as a webhook on our dashboard. The default route is

Please note: we only support TLS endpoints ("https only")

3) Copy the secret signing key 4) Add the secret signing key to your .env file

5) Your app will now receive events from your hello one project. You can test the integration by sending a test-event from our dashboard

Usage

This package handles incoming webhook requests from hello one. It verifies the request signature of hello one webhook requests. When a request is valid the package emits and emits a Laravel Event

To react on any of the events you can create an event listener.

Listen to all webhook events with a wildcard:

Listen to specific events:

Event List

You can query the complete event list from our API

Please note: in Laravel all events are prefixed with hello-one.webhook.

Laravel Event Name Description
hello-one.webhook.webhook_test This is a test event. You should ignore it.
hello-one.webhook.guest.created A Guest registered or was added by an admin
hello-one.webhook.guest.updated A Guest was updated
hello-one.webhook.guest.deleted A Guest was deleted
hello-one.webhook.event_booking.created The Guest made a reservation for an event
hello-one.webhook.event_booking.updated
hello-one.webhook.event_booking.deleted
hello-one.webhook.event.created An event was added to your project
hello-one.webhook.event.updated
hello-one.webhook.event.deleted
hello-one.webhook.session.created A session was added to an event
hello-one.webhook.session.updated
hello-one.webhook.session.deleted
hello-one.webhook.session_booking.created A Guest booked a session
hello-one.webhook.session_booking.updated
hello-one.webhook.session_booking.deleted
hello-one.webhook.form_submission.created A form was submitted
hello-one.webhook.form_submission.updated
hello-one.webhook.form_submission.deleted
hello-one.webhook.form.created A form was created
hello-one.webhook.form.updated
hello-one.webhook.form.deleted
hello-one.webhook.audience.created An audience was created
hello-one.webhook.audience.updated
hello-one.webhook.audience.delete

Configuration

Publish the config file and adjust as needed

Documentation

Please notice our Webhook Documentation

Contributing

Feel free to open a ticket, submit a Pull Request or ask our Support Team


All versions of laravel-webhooks with dependencies

PHP Build Version
Package Version
Requires php Version >=7.3
ext-json Version *
laravel/framework Version >5.6
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 hello-one/laravel-webhooks contains the following files

Loading the files please wait ....