Download the PHP package laravel-notification-channels/wunderlist without Composer
On this page you can find all versions of the php package laravel-notification-channels/wunderlist. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download laravel-notification-channels/wunderlist
More information about laravel-notification-channels/wunderlist
Files in laravel-notification-channels/wunderlist
Package wunderlist
Short Description Wunderlist Notifications driver
License MIT
Homepage https://github.com/laravel-notification-channels/wunderlist
Informations about the package wunderlist
Wunderlist notifications channel for Laravel 5.3
~This package makes it easy to create Wunderlist tasks with Laravel 5.3.~
Channel Deprecated
Please see this issue for more infomation.
This channel was deprecated in Oct 2019 due to lack of a maintainer.
Contents
- Installation
- Setting up the Wunderlist service
- Usage
- Available Message methods
- Changelog
- Testing
- Security
- Contributing
- Credits
- License
Installation
You can install the package via composer:
Setting up the Wunderlist service
Create a new Wunderlist App.
Add your Wunderlist Client-ID to your config/services.php
:
Usage
Now you can use the channel in your via()
method inside the notification:
In order to let your notification know which Wunderlist user and Wunderlist list you are targeting, add the routeNotificationForWunderlist
method to your Notifiable model.
This method needs to return an array containing the access token of the authorized Wunderlist user and the list ID of the Wunderlist list to add the ticket to.
Available methods
title('')
: Accepts a string value for the Wunderlist ticket title.assigneeId('')
: Accepts a string value for the Wunderlist assignee id.recurrenceCount('')
: Accepts an integer value for the ticket recurrence count.recurrenceType('')
: Accepts one of these values for the recurrence type:WunderlistMessage::RECURRENCE_TYPE_DAY
,WunderlistMessage::RECURRENCE_TYPE_WEEK
,WunderlistMessage::RECURRENCE_TYPE_MONTH
,WunderlistMessage::RECURRENCE_TYPE_YEAR
starred()
: Marks the Wunderlist ticket as starred.completed()
: Marks the Wunderlist ticket as completed.due('')
: Accepts a string or DateTime object for the Wunderlist ticket due date.
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
- Marcel Pociot
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of wunderlist with dependencies
guzzlehttp/guzzle Version ~6.0
illuminate/notifications Version 5.3.*
illuminate/support Version 5.1.*|5.2.*|5.3.*