Download the PHP package lab123/lumen-notification without Composer
On this page you can find all versions of the php package lab123/lumen-notification. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download lab123/lumen-notification
More information about lab123/lumen-notification
Files in lab123/lumen-notification
Package lumen-notification
Short Description Wrapper of Laravel Notification adapted to work with Lumen 5.x
License MIT
Homepage https://github.com/lab123/lumen-notification
Informations about the package lumen-notification
Laravel 5.3 Notification for Lumen 5.x
This package is a wrapper of Laravel Notification adapted to work with Lumen 5.x
Contents
- Installation
- Usage
- Changelog
- Testing
- Security
- Contributing
- Credits
- License
Installation
Can to install with commands:
composer require lab123/lumen-notification
Or editing the composer.json
file:
"require": {
"lab123/lumen-notification": "dev-master"
}
Register the package in the section "Register Service Providers" in bootstrap/app.php
$app->register(\LumenNotification\LumenNotificationServiceProvider::class);
To can use the views from Laravel Notifications, use the command wrapper from php artisan vendor:publish:
php artisan lumen-notification:publish
Usage
After register the Service Provider the aplication can execute the commands:
Equivalent to php artisan make:notification in Laravel 5.7
php artisan lumen-notification:notification
Equivalent to php artisan vendor:publish in Laravel
php artisan lumen-notification:publish
Equivalent to php artisan notifications:table in Laravel
php artisan lumen-notification:table
To more information how to use Notifications: Laravel Notification
Changelog
Please see CHANGELOG for more information what has changed recently.
Testing
Security
If you discover any security related issues, please email [email protected] instead of using the issue tracker.
Contributing
Please see CONTRIBUTING for details.
Credits
License
The MIT License (MIT). Please see License File for more information.
All versions of lumen-notification with dependencies
illuminate/notifications Version ^5.3
illuminate/mail Version ^5.3
guzzlehttp/guzzle Version ^6.2