jenky / laravel-push-notification
Laravel Push Notification
dev-master
2017-01-26 15:37 UTC
Requires
- illuminate/config: 5.1.*|5.2.*|5.3.*|5.4.*
- illuminate/queue: 5.1.*|5.2.*|5.3.*|5.4.*
- sly/notification-pusher: ^2.2
Requires (Dev)
- phpunit/phpunit: 4.*
Suggests
- illuminate/notifications: Required to use Laravel Notifications (~5.3).
This package is auto-updated.
Last update: 2024-10-29 05:04:44 UTC
README
######Laravel package for sending push notification.
Installation
Require this package with composer:
composer require jenky/laravel-push-notification
or add this to composer.json
"jenky/laravel-push-notification": "^1.0"
After updating composer, add the ServiceProvider to the providers array in config/app.php
Jenky\LaravelPushNotification\PushNotificationServiceProvider::class,
Add this to your facades in config/app.php
(optional):
'PushNotification' => Jenky\LaravelPushNotification\Facades\PushNotification::class,
Copy the package config to your local config with the publish command:
php artisan vendor:publish
or
php artisan vendor:publish --provider="Jenky\LaravelPushNotification\PushNotificationServiceProvider"
Usage
WIP