2017 © Pedro Peláez
 

library failed-job-notifier

Notification service provider for failed Laravel Queue Jobs

image

generationtux/failed-job-notifier

Notification service provider for failed Laravel Queue Jobs

  • Monday, January 23, 2017
  • by larkmullins
  • Repository
  • 3 Watchers
  • 2 Stars
  • 0 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 1 Versions
  • 0 % Grown

The README.md

Failed Job Notifier

Notification service provider for failed Laravel Queue Jobs, (*1)

Install

Install failed-job-notifier using Composer, (*2)

composer require generationtux/failed-job-notifier

Next, setup the required ENV variables:, (*3)

PUSHER_KEY // Your Pusher Key
PUSHER_SECRET                   // Your Pusher Secret
PUSHER_APP_ID                   // Your Pusher App ID

FAILED_JOBS_SERVICE             // Service name
FAILED_JOBS_URL                 // Service url
FAILED_JOBS_EMAIL_SENDER        // Email to send from
FAILED_JOBS_EMAIL_SENDER_NAME   // Sender Name
FAILED_JOBS_EMAIL_RECIPIENTS    // Who gets the emails
FAILED_JOBS_EMAIL_SUBJECT       // Subject of failed job emails

Finally, register the service provider:, (*4)

// config/app.php
'providers' => [
    ...
    GenTux\FailedJobNotifier\FailedJobNotifierService::class,
    ...
];

The Versions

23/01 2017

dev-master

9999999-dev

Notification service provider for failed Laravel Queue Jobs

  Sources   Download

MIT

The Requires

 

The Development Requires