PHPackages                             laravel-notification-channels/wunderlist - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Mail &amp; Notifications](/categories/mail)
4. /
5. laravel-notification-channels/wunderlist

AbandonedArchivedLibrary[Mail &amp; Notifications](/categories/mail)

laravel-notification-channels/wunderlist
========================================

Wunderlist Notifications driver

1.0.0(9y ago)8351MITPHPPHP &gt;=5.6.4

Since Aug 15Pushed 6y ago1 watchersCompare

[ Source](https://github.com/laravel-notification-channels/wunderlist)[ Packagist](https://packagist.org/packages/laravel-notification-channels/wunderlist)[ Docs](https://github.com/laravel-notification-channels/wunderlist)[ RSS](/packages/laravel-notification-channels-wunderlist/feed)WikiDiscussions master Synced 2mo ago

READMEChangelog (2)Dependencies (7)Versions (4)Used By (0)

Wunderlist notifications channel for Laravel 5.3
================================================

[](#wunderlist-notifications-channel-for-laravel-53)

[![Latest Version on Packagist](https://camo.githubusercontent.com/68dac3d1a55e83369e7883c7ce4e3744083aa5322cb9a33dc7d7f308fe17f546/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f77756e6465726c6973742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/wunderlist)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/8c964461d645a3a629734761e52df87a4cc706b779df7f48fff2e377844ad990/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f77756e6465726c6973742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-notification-channels/wunderlist)[![StyleCI](https://camo.githubusercontent.com/37b2b67cb08e273d7c9f66d1cb0d7bb91f52f05101b3536601a7d3341eff14ce/68747470733a2f2f7374796c6563692e696f2f7265706f732f36353734333133312f736869656c64)](https://styleci.io/repos/65743131)[![SensioLabsInsight](https://camo.githubusercontent.com/dd47d50f7dde785befae7e96d307fdbb0b6b475813f541d769095bab6ebeda0f/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f31313731366335322d393962342d343132622d623638632d6237386530663138663834342e7376673f7374796c653d666c61742d737175617265)](https://insight.sensiolabs.com/projects/11716c52-99b4-412b-b68c-b78e0f18f844)[![Quality Score](https://camo.githubusercontent.com/b8684ba4780f902699a92e9e2dbd01f646fad40e1950fdbb2d26531ca9c058dd/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f77756e6465726c6973742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/wunderlist)[![Code Coverage](https://camo.githubusercontent.com/c9c840bc329d8429b20c107bd3e2eb83cd948ba9152fda9a3e9001fd86883a4c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f77756e6465726c6973742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/wunderlist/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/8676591a8487f21765cc5ad7f6420f359d176164d9d63aabd36f7fac66a5dd17/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f77756e6465726c6973742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/wunderlist)

This package makes it easy to create [Wunderlist tasks](https://developers.wunderlist.com/) with Laravel 5.3.

Channel Deprecated
==================

[](#channel-deprecated)

Please see [this issue](https://github.com/laravel-notification-channels/channels/issues/67) for more infomation.
This channel was deprecated in Oct 2019 due to lack of a maintainer.

Contents
--------

[](#contents)

- [Installation](#installation)
    - [Setting up the Wunderlist service](#setting-up-the-wunderlist-service)
- [Usage](#usage)
    - [Available Message methods](#available-message-methods)
- [Changelog](#changelog)
- [Testing](#testing)
- [Security](#security)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require laravel-notification-channels/wunderlist
```

### Setting up the Wunderlist service

[](#setting-up-the-wunderlist-service)

Create a [new Wunderlist App](https://developer.wunderlist.com/apps/new).

Add your Wunderlist Client-ID to your `config/services.php`:

```
// config/services.php
...
'wunderlist' => [
    'key' => env('WUNDERLIST_API_KEY'),
],
...
```

Usage
-----

[](#usage)

Now you can use the channel in your `via()` method inside the notification:

```
use NotificationChannels\Wunderlist\WunderlistChannel;
use NotificationChannels\Wunderlist\WunderlistMessage;
use Illuminate\Notifications\Notification;

class ProjectCreated extends Notification
{
    public function via($notifiable)
    {
        return [WunderlistChannel::class];
    }

    public function toWunderlist($notifiable)
    {
        return WunderlistMessage::create('Another channel bites the dust')
            ->starred()
            ->due('tomorrow');
    }
}
```

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.

```
public function routeNotificationForWunderlist()
{
    return [
        'token' => 'NotifiableAccessToken',
        'list_id' => 12345,
    ];
}
```

### Available methods

[](#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
---------

[](#changelog)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Credits
-------

[](#credits)

- [Marcel Pociot](https://github.com/mpociot)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

29

—

LowBetter than 60% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity14

Limited adoption so far

Community15

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor2

2 contributors hold 50%+ of commits

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~7 days

Total

2

Last Release

3550d ago

Major Versions

0.0.1 → 1.0.02016-08-23

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/20937037?v=4)[Laravel Notification Channels](/maintainers/laravel-notification-channels)[@laravel-notification-channels](https://github.com/laravel-notification-channels)

---

Top Contributors

[![mpociot](https://avatars.githubusercontent.com/u/804684?v=4)](https://github.com/mpociot "mpociot (10 commits)")[![freekmurze](https://avatars.githubusercontent.com/u/483853?v=4)](https://github.com/freekmurze "freekmurze (9 commits)")[![JayBizzle](https://avatars.githubusercontent.com/u/340752?v=4)](https://github.com/JayBizzle "JayBizzle (2 commits)")[![atymic](https://avatars.githubusercontent.com/u/50683531?v=4)](https://github.com/atymic "atymic (2 commits)")[![casperboone](https://avatars.githubusercontent.com/u/15815208?v=4)](https://github.com/casperboone "casperboone (1 commits)")[![oyed](https://avatars.githubusercontent.com/u/172114265?v=4)](https://github.com/oyed "oyed (1 commits)")[![themsaid](https://avatars.githubusercontent.com/u/4332182?v=4)](https://github.com/themsaid "themsaid (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/laravel-notification-channels-wunderlist/health.svg)

```
[![Health](https://phpackages.com/badges/laravel-notification-channels-wunderlist/health.svg)](https://phpackages.com/packages/laravel-notification-channels-wunderlist)
```

###  Alternatives

[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.4M35](/packages/laravel-notification-channels-telegram)[laravel-notification-channels/fcm

FCM (Firebase Cloud Messaging) Notifications Driver for Laravel

5917.0M16](/packages/laravel-notification-channels-fcm)[s-ichikawa/laravel-sendgrid-driver

This library adds a 'sendgrid' mail driver to Laravel.

4139.3M1](/packages/s-ichikawa-laravel-sendgrid-driver)[laravel-notification-channels/microsoft-teams

A Laravel Notification Channel for Microsoft Teams

1603.0M7](/packages/laravel-notification-channels-microsoft-teams)[laravel-notification-channels/discord

Laravel notification driver for Discord.

2371.3M11](/packages/laravel-notification-channels-discord)[laravel-notification-channels/aws-sns

Amazon Simple Notification Service (AWS SNS) notification channel for Laravel.

541.1M2](/packages/laravel-notification-channels-aws-sns)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
