https://github.com/laravel-notification-channels/backport
Laravel Notifications for Laravel 5.2 / 5.1
https://github.com/laravel-notification-channels/backport
Last synced: 2 months ago
JSON representation
Laravel Notifications for Laravel 5.2 / 5.1
- Host: GitHub
- URL: https://github.com/laravel-notification-channels/backport
- Owner: laravel-notification-channels
- License: mit
- Created: 2016-08-17T14:09:18.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2018-09-20T15:47:35.000Z (almost 7 years ago)
- Last Synced: 2025-04-13T16:46:55.020Z (2 months ago)
- Language: PHP
- Homepage: http://laravel-notification-channels.com
- Size: 40 KB
- Stars: 26
- Watchers: 2
- Forks: 11
- Open Issues: 8
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Laravel Notifications for Laravel 5.2 / 5.1
[](https://packagist.org/packages/laravel-notification-channels/backport)
[](LICENSE.md)
[](https://travis-ci.org/laravel-notification-channels/backport)
[](https://styleci.io/repos/65912768)
[](https://scrutinizer-ci.com/g/laravel-notification-channels/backport)
[](https://scrutinizer-ci.com/g/laravel-notification-channels/backport/?branch=master)
[](https://packagist.org/packages/laravel-notification-channels/backport)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.
## Installation
You can install the package via composer:
```bash
composer require laravel-notification-channels/backport
```Next, you must load the service provider:
```php
// config/app.php
'providers' => [
// ...
Illuminate\Notifications\NotificationServiceProvider::class,
],
```## Usage
Please refer to the [official Laravel Notification documentation](https://laravel.com/docs/master/notifications).
## License
The MIT License (MIT). Please see [License File](LICENSE.md) for more information.