PHPackages                             pm4dev/pause\_jobs - 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. pm4dev/pause\_jobs

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

pm4dev/pause\_jobs
==================

Pause Jobs

1.0.0(10mo ago)03PHP

Since Jul 18Pushed 10mo agoCompare

[ Source](https://github.com/caleeli/laravel_skip_jobs)[ Packagist](https://packagist.org/packages/pm4dev/pause_jobs)[ RSS](/packages/pm4dev-pause-jobs/feed)WikiDiscussions main Synced 1mo ago

READMEChangelog (1)DependenciesVersions (2)Used By (0)

Laravel Pause Jobs Package
==========================

[](#laravel-pause-jobs-package)

A Laravel package that allows you to pause/disable specific jobs without modifying the job code itself.

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

[](#installation)

1. Install the package via Composer:

```
composer require pm4dev/pause_jobs
```

2. The package will auto-register itself with Laravel.

How it works
------------

[](#how-it-works)

This package adds middleware to Laravel's job bus that checks if a job is in the disabled list before executing it. If a job is disabled, it will be skipped and logged.

Available Commands
------------------

[](#available-commands)

### Disable a Job

[](#disable-a-job)

```
php artisan jobs:disable "App\Jobs\YourJobClass"
```

### Enable a Job

[](#enable-a-job)

```
php artisan jobs:enable "App\Jobs\YourJobClass"
```

### List Disabled Jobs

[](#list-disabled-jobs)

```
php artisan jobs:list-disabled
```

### Enable All Jobs

[](#enable-all-jobs)

```
php artisan jobs:enable-all
```

Or force enable without confirmation:

```
php artisan jobs:enable-all --force
```

Usage Examples
--------------

[](#usage-examples)

### Disable a specific job

[](#disable-a-specific-job)

```
php artisan jobs:disable "App\Jobs\SendEmailJob"
```

### Enable a previously disabled job

[](#enable-a-previously-disabled-job)

```
php artisan jobs:enable "App\Jobs\SendEmailJob"
```

### Check what jobs are currently disabled

[](#check-what-jobs-are-currently-disabled)

```
php artisan jobs:list-disabled
```

### Enable all jobs at once

[](#enable-all-jobs-at-once)

```
php artisan jobs:enable-all
```

Storage
-------

[](#storage)

The package stores the list of disabled jobs in `storage/app/disabled_jobs.json`. This file is automatically created and managed by the package.

Logging
-------

[](#logging)

When a job is skipped due to being disabled, it will be logged with:

- Laravel's log system (`Log::info`)
- PHP's error log (`error_log`)

The log message format is: `SKIPPED JOB: {JobClassName}`

Notes
-----

[](#notes)

- Job class names must be fully qualified (e.g., `App\Jobs\YourJobClass`)
- The package validates that the job class exists when disabling
- Disabled jobs are completely skipped and not executed
- The disabled jobs list persists across application restarts

###  Health Score

26

—

LowBetter than 43% of packages

Maintenance54

Moderate activity, may be stable

Popularity3

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity36

Early-stage or recently created project

 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

304d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/8b3a87d6d814a69473de7055838a4d51a92c679b646d4183718afc6fca08e9c7?d=identicon)[davidc](/maintainers/davidc)

---

Top Contributors

[![caleeli](https://avatars.githubusercontent.com/u/8028650?v=4)](https://github.com/caleeli "caleeli (2 commits)")

### Embed Badge

![Health badge](/badges/pm4dev-pause-jobs/health.svg)

```
[![Health](https://phpackages.com/badges/pm4dev-pause-jobs/health.svg)](https://phpackages.com/packages/pm4dev-pause-jobs)
```

###  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)
