PHPackages                             pmatseykanets/file-queue-failer - 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. pmatseykanets/file-queue-failer

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

pmatseykanets/file-queue-failer
===============================

File based implementation of Laravel Queue Failer

v2.1.0(7y ago)42.9k[1 issues](https://github.com/pmatseykanets/file-queue-failer/issues)MITPHPPHP &gt;=7.1.3

Since Aug 9Pushed 7y ago1 watchersCompare

[ Source](https://github.com/pmatseykanets/file-queue-failer)[ Packagist](https://packagist.org/packages/pmatseykanets/file-queue-failer)[ RSS](/packages/pmatseykanets-file-queue-failer/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (5)Dependencies (4)Versions (6)Used By (0)

File based implementation of Laravel Queue Failer
=================================================

[](#file-based-implementation-of-laravel-queue-failer)

[![Laravel 5.X](https://camo.githubusercontent.com/d713ef1e6207b1f423ff6e2775d0501827480ae902a3e2ebb75ec59356e0ae4d/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f4c61726176656c2d352e582d6f72616e67652e737667)](http://laravel.com)[![StyleCI](https://camo.githubusercontent.com/0084e0d70ae69f6273c9eb254e8cf7f1bff9cc8b3e693be0559f68b8c1d5aad9/68747470733a2f2f7374796c6563692e696f2f7265706f732f34303236383735392f736869656c64)](https://styleci.io/repos/40268759)[![Build Status](https://camo.githubusercontent.com/479457881ff0370a9d8b439709503af3b053ae0d59ddabb15bc2db993c44cd66/68747470733a2f2f7472617669732d63692e6f72672f706d61747365796b616e6574732f66696c652d71756575652d6661696c65722e737667)](https://travis-ci.org/pmatseykanets/file-queue-failer)[![Latest Stable Version](https://camo.githubusercontent.com/d4602a91531d5246e405ed035f8e239c5618744e7bc60d3b1ab1a8de5d0e4cb7/68747470733a2f2f706f7365722e707567782e6f72672f706d61747365796b616e6574732f66696c652d71756575652d6661696c65722f762f737461626c65)](https://packagist.org/packages/pmatseykanets/file-queue-failer)[![License](https://camo.githubusercontent.com/2c523fc748a0285b78e215652c43d4907d491f5b901c4a8fd81242b738443e8a/68747470733a2f2f706f7365722e707567782e6f72672f706d61747365796b616e6574732f66696c652d71756575652d6661696c65722f6c6963656e7365)](https://packagist.org/packages/pmatseykanets/file-queue-failer)

If you use job queues in your [Laravel](http://laravel.com) or [Lumen](http://lumen.laravel.com) project but don't want to store failed jobs in the database, especially if you're not using a database in the project itself (i.e. an API proxi) this file based failer is to rescue.

Contents
--------

[](#contents)

- [Installation](#installation)
- [Configuration](#configuration)
- [Usage](#usage)
- [Testing](#testing)
- [Security](#security)
- [Changelog](#changelog)
- [Contributing](#contributing)
- [Credits](#credits)
- [License](#license)

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

[](#installation)

### Install through composer

[](#install-through-composer)

**Laravel 5.6**

```
$ composer require pmatseykanets/file-queue-failer
```

**Laravel 5.3 - 5.5**

```
$ composer require pmatseykanets/file-queue-failer:1.1.0
```

If you're using Laravel &lt; 5.5 or if you have package auto-discovery turned off you have to manually register the service provider:

```
// config/app.php
'providers' => [
    /*
     * Package Service Providers...
     */
    Pvm\FileQueueFailer\Queue\QueueServiceProvider::class,
],
```

**Laravel 5.0 - 5.2**

```
$ composer require pmatseykanets/file-queue-failer:0.1.0
```

Swap the original `QueueServiceProvider` implementation in `config\app.php`

```
// config/app.php
'providers' => [
    // Illuminate\Queue\QueueServiceProvider::class,
    Pvm\FileQueueFailer\Queue\QueueServiceProvider::class,
];
```

Configuration
-------------

[](#configuration)

By default failed jobs will be stored in `storage\failed_jobs` directory.

You can change the location by changing the `path` property in `failed` section of `config\queue.php` config file.

```
// config\queue.php
'failed' => [
    'path' => '/some/other/path',
],
```

Usage
-----

[](#usage)

You can use all artisan `queue` commands as usual to manage failed jobs

```
 queue
  queue:failed        List all of the failed queue jobs
  queue:flush         Flush all of the failed queue jobs
  queue:forget        Delete a failed queue job
  queue:retry         Retry a failed queue job
```

Testing
-------

[](#testing)

```
$ ./vendor/bin/phpunit
```

Security
--------

[](#security)

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

Changelog
---------

[](#changelog)

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

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

[](#contributing)

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

Credits
-------

[](#credits)

- [Peter Matseykanets](https://github.com/pmatseykanets)
- [All Contributors](../../contributors)

License
-------

[](#license)

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

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance15

Infrequent updates — may be unmaintained

Popularity20

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity62

Established project with proven stability

 Bus Factor1

Top contributor holds 95.7% 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 ~294 days

Total

5

Last Release

2748d ago

Major Versions

v0.1.0 → v1.0.02017-11-25

v1.1.0 → v2.0.02018-02-09

PHP version history (3 changes)v0.1.0PHP &gt;=5.5.9

v1.0.0PHP &gt;=5.6.4

v2.0.0PHP &gt;=7.1.3

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/779965?v=4)[Peter Matseykanets](/maintainers/pmatseykanets)[@pmatseykanets](https://github.com/pmatseykanets)

---

Top Contributors

[![pmatseykanets](https://avatars.githubusercontent.com/u/779965?v=4)](https://github.com/pmatseykanets "pmatseykanets (22 commits)")[![GrahamCampbell](https://avatars.githubusercontent.com/u/2829600?v=4)](https://github.com/GrahamCampbell "GrahamCampbell (1 commits)")

---

Tags

laravellaravel-packagequeuelaravellumenqueuejobfailedfailer

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/pmatseykanets-file-queue-failer/health.svg)

```
[![Health](https://phpackages.com/badges/pmatseykanets-file-queue-failer/health.svg)](https://phpackages.com/packages/pmatseykanets-file-queue-failer)
```

###  Alternatives

[imtigger/laravel-job-status

Laravel Job Status

5272.1M2](/packages/imtigger-laravel-job-status)[shiftonelabs/laravel-sqs-fifo-queue

Adds a Laravel queue driver for Amazon SQS FIFO queues.

1556.0M3](/packages/shiftonelabs-laravel-sqs-fifo-queue)[harris21/laravel-fuse

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

3786.5k](/packages/harris21-laravel-fuse)[maqe/laravel-sqs-fifo

Laravel package that enables support for SQS FIFO Queue

15137.2k](/packages/maqe-laravel-sqs-fifo)

PHPackages © 2026

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