PHPackages                             spinyman/laravel-will-queue - 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. [Queues &amp; Workers](/categories/queues)
4. /
5. spinyman/laravel-will-queue

ActiveLibrary[Queues &amp; Workers](/categories/queues)

spinyman/laravel-will-queue
===========================

1.0.2(6y ago)0177MITPHPPHP ~5.6|~7.0

Since Jul 16Pushed 6y ago1 watchersCompare

[ Source](https://github.com/spinyman/laravel-will-queue)[ Packagist](https://packagist.org/packages/spinyman/laravel-will-queue)[ Docs](https://github.com/spinyman/laravel-will-queue)[ RSS](/packages/spinyman-laravel-will-queue/feed)WikiDiscussions master Synced yesterday

READMEChangelogDependencies (1)Versions (2)Used By (0)

laravel-will-queue
==================

[](#laravel-will-queue)

[![Latest Version on Packagist](https://camo.githubusercontent.com/a965e529c0a7ab10b0e3481a6b40ff7a5937d395a510fa30c12679f70170cc7b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f7370696e796d616e2f6c61726176656c2d77696c6c2d71756575652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/spinyman/laravel-will-queue)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Total Downloads](https://camo.githubusercontent.com/f080aca462905b8489702e4699ddfda26007d689a2ac54f678f83496ae5ade25/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f7370696e796d616e2f6c61726176656c2d77696c6c2d71756575652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/spinyman/laravel-will-queue)

This package gives you ability to change notification type (instant or via queue) dynamically.

Install
-------

[](#install)

Via Composer

```
$ composer require spinyman/laravel-will-queue
```

Usage
-----

[](#usage)

1. First of all you have to deimplement ShouldQueue interface from all notification models:

    **class** EmailNotification **extends** Notification **implements** ShouldQueue
2. Make changes in User model:

    **use** Illuminate\\Notifications\\Notifiable;

    **use** SpinyMan\\WillQueue\\Notifiable;

    ```
    use SpinyMan\WillQueue\Notifiable;

    class User extends Authenticatable {
    	use Notifiable;
    	...
    }
    ```
3. somewhere use notify function with second optional bool param to indicate queue (true) or instant (false) notification (default: false):

    ```
    $user = User::find(1);
    $user->notify(new EmailNotification() [, true|false]);
    ```

    OR if you are really sure to notify using queue:

    ```
    $user = User::find(1);
    $user->notifyFromQueue(new EmailNotification());
    ```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

2493d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/b0f6cefd53915887740fdf46fccc21e90fe8c0bcbdf61ac58be00eefe9304af4?d=identicon)[SpinyMan](/maintainers/SpinyMan)

---

Top Contributors

[![SpinyMan](https://avatars.githubusercontent.com/u/2108167?v=4)](https://github.com/SpinyMan "SpinyMan (5 commits)")

---

Tags

laravelqueue

### Embed Badge

![Health badge](/badges/spinyman-laravel-will-queue/health.svg)

```
[![Health](https://phpackages.com/badges/spinyman-laravel-will-queue/health.svg)](https://phpackages.com/packages/spinyman-laravel-will-queue)
```

###  Alternatives

[harris21/laravel-fuse

Circuit breaker for Laravel queue jobs. Protect your workers from cascading failures.

3786.5k](/packages/harris21-laravel-fuse)[pmatseykanets/artisan-beans

Easily manage your Beanstalkd job queues right from the Laravel artisan command

4482.1k](/packages/pmatseykanets-artisan-beans)

PHPackages © 2026

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