This package acts as a backport for the Laravel 5.3 notification system, to allow its usage with Laravel 5.1 and Laravel 5.2.
You can install the package via composer:
composer require laravel-notification-channels/backport
Next, you must load the service provider:
// config/app.php
'providers' => [
// ...
Illuminate\Notifications\NotificationServiceProvider::class,
],
Please refer to the official Laravel Notification documentation.
The MIT License (MIT). Please see License File for more information.