Package Data | |
---|---|
Maintainer Username: | jeanpfs |
Maintainer Contact: | jean.pierre@lab123.com.br (Jean Pierre) |
Package Create Date: | 2016-11-19 |
Package Last Update: | 2019-02-01 |
Language: | PHP |
License: | MIT |
Last Refreshed: | 2024-11-09 03:01:34 |
Package Statistics | |
---|---|
Total Downloads: | 49,318 |
Monthly Downloads: | 151 |
Daily Downloads: | 4 |
Total Stars: | 2 |
Total Watchers: | 3 |
Total Forks: | 4 |
Total Open Issues: | 5 |
This package is a wrapper of Laravel Notification adapted to work with Lumen 5.x
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
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
Please see CHANGELOG for more information what has changed recently.
$ composer test
If you discover any security related issues, please email jean.pierre@lab123.com.br instead of using the issue tracker.
Please see CONTRIBUTING for details.
The MIT License (MIT). Please see License File for more information.