From fdb6b1b6eb53f84ec37199904f30eefeac4c4066 Mon Sep 17 00:00:00 2001 From: Harrison Ratcliffe Date: Wed, 18 Jun 2025 13:31:37 +0100 Subject: [PATCH] feat: add support for Laravel 12 --- README.md | 9 +++++---- composer.json | 4 ++-- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index a7f183a..1f3d444 100644 --- a/README.md +++ b/README.md @@ -6,10 +6,11 @@ [![Total Downloads](https://img.shields.io/packagist/dt/rajentrivedi/queue-watch.svg?style=flat-square)](https://packagist.org/packages/rajentrivedi/queue-watch) ## Supported Versions -| Version| Supported | -| -------| ------------------ | -| 10.x | :white_check_mark: | -| 11.x | :white_check_mark: | +| Version | Supported | +|---------| ------------------ | +| 10.x | :white_check_mark: | +| 11.x | :white_check_mark: | +| 12.x | :white_check_mark: | Managing queue workers in a Laravel application can sometimes be tedious, especially when dealing with long-running processes. A common challenge is ensuring that workers are restarted whenever there are changes in the jobs, events, or listeners folders. Restarting workers manually can be inefficient and prone to oversight specially during development, potentially leading to application inconsistencies or stale queue processing. diff --git a/composer.json b/composer.json index 5100d48..5c0a14b 100644 --- a/composer.json +++ b/composer.json @@ -28,9 +28,9 @@ } ], "require": { - "php": "^8.1||^8.2", + "php": "^8.1||^8.2|^8.3|^8.4", "spatie/laravel-package-tools": "^1.16", - "illuminate/contracts": "^10.0||^11.0" + "illuminate/contracts": "^10.0||^11.0|^12.0" }, "require-dev": { "laravel/pint": "^1.14",