PHPackages                             wwwision/neos-jobqueuemodule - 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. wwwision/neos-jobqueuemodule

ActiveNeos-package[Queues &amp; Workers](/categories/queues)

wwwision/neos-jobqueuemodule
============================

Neos Backend Module for the Flowpack.JobQueue packages

1.1.0(3y ago)69.6k↓22.7%MITPHPPHP &gt;=7.4

Since Feb 8Pushed 3y ago1 watchersCompare

[ Source](https://github.com/bwaidelich/Wwwision.Neos.JobQueueModule)[ Packagist](https://packagist.org/packages/wwwision/neos-jobqueuemodule)[ Fund](https://www.paypal.me/bwaidelich)[ GitHub Sponsors](https://github.com/bwaidelich)[ RSS](/packages/wwwision-neos-jobqueuemodule/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (2)Dependencies (3)Versions (3)Used By (0)

Wwwision.Neos.JobQueueModule
============================

[](#wwwisionneosjobqueuemodule)

Neos Backend Module for the [Flowpack.JobQueue.Common](https://github.com/Flowpack/jobqueue-common) packages.

[![](screenshot_module.png "JobQueue Management module")](screenshot_module.png)

Usage
-----

[](#usage)

Install package via composer:

```
composer require wwwision/neos-jobqueuemodule

```

And navigate to the new `jobs` module at /neos/administration/jobs

*Note:* If the authenticated user doesn't have the `Neos.Neos:Administrator` role, you'll need to grant privileges in order to access the JobQueue backend module (see below).

### Configuration

[](#configuration)

This package doesn't require any specific settings, since the behavior is determined via corresponding privileges:

#### Access control

[](#access-control)

Users with the role `Neos.Neos:Administrator` will have access to the module and all configured JobQueues by default. To grant editor roles access to specific queues, privileges can be granted via [Policy.yaml](https://flowframework.readthedocs.io/en/stable/TheDefinitiveGuide/PartIII/Security.html#defining-privileges-policies).

In general, users need access to the `administration` module as well as the `administration/jobs` sub module:

```
roles:
  'Some.Package:SomeEditorRole':
    privileges:
      - privilegeTarget: 'Neos.Neos:Backend.Module.Administration'
        permission: GRANT
      - privilegeTarget: 'Wwwision.Neos.JobQueueModule:Module'
        permission: GRANT
```

#### Example 1: Read access to specific queue

[](#example-1-read-access-to-specific-queue)

To grant a role read access to a specific Job Queue, the `Queues.Specific.Access` privilege can be granted:

```
roles:
  'Some.Package:SomeEditorRole':
    privileges:
      # ...
      - privilegeTarget: 'Wwwision.Neos.JobQueueModule:Queues.Specific.Access'
        parameters:
          queue: 'Some.Queue:Name'
        permission: GRANT
```

With this `Policy.yaml`, users of the corresponding role will have access to a queue `Some.Queue:Name` if that's configured.

#### Example 1a: Grant removing messages of specific queue

[](#example-1a-grant-removing-messages-of-specific-queue)

In order to allow users to remove pending messages from the queue (i.e. mark them `finished`), the `Queues.Specific.FinishMessages`can be granted additionally:

```
roles:
  'Some.Package:SomeEditorRole':
    privileges:
      # ...
      - privilegeTarget: 'Wwwision.Neos.JobQueueModule:Queues.Specific.FinishMessages'
        parameters:
          queue: 'Some.Queue:Name'
        permission: GRANT
```

#### Example 2: Read access to all queues

[](#example-2-read-access-to-all-queues)

With the `Queues.Any.Access` privilege access to all queues can be granted at once:

```
roles:
  'Some.Package:SomeEditorRole':
    privileges:
      # ...
      - privilegeTarget: 'Wwwision.Neos.JobQueueModule:Queues.Any.Access'
        permission: GRANT
```

#### Example 2a: Grant removing messages of all queues

[](#example-2a-grant-removing-messages-of-all-queues)

Similarly, the `Queues.Any.FinishMessages` privileges can be granted to allow finishing of messages in all accessible queues:

```
roles:
  'Some.Package:SomeEditorRole':
    privileges:
      # ...
      - privilegeTarget: 'Wwwision.Neos.JobQueueModule:Queues.Any.FinishMessages'
        permission: GRANT
```

Acknowledgements
----------------

[](#acknowledgements)

The development of this package was partly sponsored by [brandung GmbH](https://www.brandung.de). Thank you for supporting Open Source development!

Contribution
------------

[](#contribution)

Contributions in the form of issues or pull requests are highly appreciated.

License
-------

[](#license)

See [LICENSE](./LICENSE)

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity29

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity50

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

Every ~285 days

Total

2

Last Release

1274d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/307571?v=4)[Bastian Waidelich](/maintainers/bwaidelich)[@bwaidelich](https://github.com/bwaidelich)

---

Top Contributors

[![bwaidelich](https://avatars.githubusercontent.com/u/307571?v=4)](https://github.com/bwaidelich "bwaidelich (3 commits)")

### Embed Badge

![Health badge](/badges/wwwision-neos-jobqueuemodule/health.svg)

```
[![Health](https://phpackages.com/badges/wwwision-neos-jobqueuemodule/health.svg)](https://phpackages.com/packages/wwwision-neos-jobqueuemodule)
```

###  Alternatives

[league/geotools

Geo-related tools PHP 7.3+ library

1.4k5.3M26](/packages/league-geotools)[enqueue/enqueue

Message Queue Library

19820.0M56](/packages/enqueue-enqueue)[deliciousbrains/wp-background-processing

WP Background Processing can be used to fire off non-blocking asynchronous requests or as a background processing tool, allowing you to queue tasks.

1.1k409.8k6](/packages/deliciousbrains-wp-background-processing)[react/async

Async utilities and fibers for ReactPHP

2228.8M171](/packages/react-async)[react/promise-stream

The missing link between Promise-land and Stream-land for ReactPHP

11512.9M45](/packages/react-promise-stream)[illuminate/bus

The Illuminate Bus package.

6043.8M409](/packages/illuminate-bus)

PHPackages © 2026

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