PHPackages                             laravel-notification-channels/todoist - 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/todoist

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

laravel-notification-channels/todoist
=====================================

Todoist Notifications driver

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

Since Aug 16Pushed 6y ago1 watchersCompare

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

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

Todoist notifications channel for Laravel 5.3
=============================================

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

[![Latest Version on Packagist](https://camo.githubusercontent.com/6aaffe4015885586da1e9d6209b692fbdea4125aad745aa8e97831504f416a35/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f746f646f6973742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/todoist)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/39f184f4f342fe59e207032ba12f519cbb0ae0d5f548b87e84a686143f9050c3/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f746f646f6973742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/laravel-notification-channels/todoist)[![StyleCI](https://camo.githubusercontent.com/d2454d4c8f985f46ffb70c2b88f17e6a40de41a573d499958c65fd65e6e3a592/68747470733a2f2f7374796c6563692e696f2f7265706f732f36353736353931302f736869656c64)](https://styleci.io/repos/65765910)[![SensioLabsInsight](https://camo.githubusercontent.com/7e7c8447d72cf0c814a8736801af612c3979a558284fad096b071a56fee81a99/68747470733a2f2f696d672e736869656c64732e696f2f73656e73696f6c6162732f692f32363263343830362d663564652d343733612d393963612d3864383661393664636662612e7376673f7374796c653d666c61742d737175617265)](https://insight.sensiolabs.com/projects/262c4806-f5de-473a-99ca-8d86a96dcfba)[![Quality Score](https://camo.githubusercontent.com/e2383855388ac48813f8f7672126c4d0f8159553169600719b8b7ea2541b364d/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f746f646f6973742e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/todoist)[![Code Coverage](https://camo.githubusercontent.com/e31397e51cfb4efc9f332459c93c8adb8e0c2a7ba88f407f751517feae263f26/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f746f646f6973742f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/laravel-notification-channels/todoist/?branch=master)[![Total Downloads](https://camo.githubusercontent.com/4d3755564022f36debccb1643fb08b390b93b43d9664f03cc081e35dfa4341f3/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c61726176656c2d6e6f74696669636174696f6e2d6368616e6e656c732f746f646f6973742e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/laravel-notification-channels/todoist)

This package makes it easy to create [Todoist tasks](https://developer.todoist.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 Todoist service](#setting-up-the-todoist-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/todoist
```

### Setting up the Todoist service

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

In order to add tickets to Todoist users, you need to obtain their access token.

Create a [new Todoist App](https://developer.todoist.com/appconsole.html) to get started.

Usage
-----

[](#usage)

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

```
use NotificationChannels\Todoist\TodoistChannel;
use NotificationChannels\Todoist\TodoistMessage;
use Illuminate\Notifications\Notification;

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

    public function toTodoist($notifiable)
    {
        return TodoistMessage::create('This is the ticket name.')
                ->priority(4)
                ->due('tomorrow');
    }
}
```

In order to let your Notification know which Todoist user and Todoist list you are targeting, add the `routeNotificationForTodoist` method to your Notifiable model.

This method needs to return the access token of the authorized Todoist user.

```
public function routeNotificationForTodoist()
{
    return 'NotifiableAccessToken';
}
```

### Available methods

[](#available-methods)

- `content('')`: Accepts a string value for the Todoist ticket content.
- `projectId('')`: Accepts an integer value for the Todoist project id, default is the "Inbox" project.
- `priority('')`: Accepts an integer value for the ticket priority. It should be a number between 1 and 4, 4 for very urgent and 1 for natural.
- `indent('')`: Accepts an integer value for the ticket indent level. It should be a a number between 1 and 4, where 1 is top-level.
- `itemOrder('')`: Accepts an integer value for the ticket item order.
- `collapsed()`: Marks the Todoist ticket as collapsed.
- `due('')`: Accepts a string or DateTime object for the Todoist 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 57% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity13

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 61.5% of commits — single point of failure

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

3598d 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 (8 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)")[![freekmurze](https://avatars.githubusercontent.com/u/483853?v=4)](https://github.com/freekmurze "freekmurze (1 commits)")[![JayBizzle](https://avatars.githubusercontent.com/u/340752?v=4)](https://github.com/JayBizzle "JayBizzle (1 commits)")

###  Code Quality

TestsPHPUnit

### Embed Badge

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

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

###  Alternatives

[craftcms/cms

Craft CMS

3.6k3.6M2.9k](/packages/craftcms-cms)[spatie/laravel-health

Monitor the health of a Laravel application

87511.3M155](/packages/spatie-laravel-health)[laravel-notification-channels/telegram

Telegram Notifications Channel for Laravel

1.1k3.8M44](/packages/laravel-notification-channels-telegram)[s-ichikawa/laravel-sendgrid-driver

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

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

A Laravel Notification Channel for Microsoft Teams

1613.4M11](/packages/laravel-notification-channels-microsoft-teams)[erag/laravel-disposable-email

A Laravel package to detect and block disposable email addresses.

254168.5k](/packages/erag-laravel-disposable-email)

PHPackages © 2026

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