LaravelPackages.net
Acme Inc.
Toggle sidebar
oanhnn/laravel-webhook-notification

Integrate Webhook notification into Laravel 5.5+

1.966
2
v0.1.0
About oanhnn/laravel-webhook-notification

oanhnn/laravel-webhook-notification is a Laravel package for integrate webhook notification into laravel 5.5+. It currently has 2 GitHub stars and 1.966 downloads on Packagist (latest version v0.1.0). Install it with composer require oanhnn/laravel-webhook-notification. Discover more Laravel packages by oanhnn or browse all Laravel packages to compare alternatives.

Last updated

Introduction

Latest Version Software License Build Status Coverage Status Total Downloads Requires PHP

Easy send Webhook notification in Laravel 5.5+ Application

Requirements

  • php >=7.1.3
  • Laravel 5.5+

Installation

Begin by pulling in the package through Composer.

$ composer require oanhnn/laravel-webhook-notification

Usage

Implement webhook notifiable:


class User extends Authenticatable implements WebhookNotifiable
{
    use Notifiable;

    /**
     * @return string
     */
    public function getSigningKey(): string
    {
        return $this->api_key;
    }

    /**
     * @return string
     */
    public function getWebhookUrl(): string
    {
        return $this->webhook_url;
    }
}

In notification class,


class ProjectCreated extends Notification
{
    /**
     * @return array
     */
    public function via($notifiable)
    {
        return [WebhookChannel::class];
    }

    /**
     * @return array|WebhookMessage
     */
    public function toWebhook($notifiable)
    {
        return WebhookMessage::create()
            ->data([
               'payload' => [
                   'foo' => 'bar'
               ]
            ])
            ->userAgent("Custom-User-Agent")
            ->header('X-Custom', 'Custom-Header');
    }
}

See more in Laravel document

Changelog

See all change logs in CHANGELOG

Testing

$ git clone [email protected]/oanhnn/laravel-webhook-notification.git /path
$ cd /path
$ composer install
$ composer phpunit

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email to Oanh Nguyen instead of using the issue tracker.

Credits

License

This project is released under the MIT License.
Copyright © 2018 Oanh Nguyen.

Star History Chart