From ac5098f09a10216b2f0c2bcacaff389569e74251 Mon Sep 17 00:00:00 2001 From: Stephan Eizinga Date: Tue, 3 Feb 2026 22:37:43 +0100 Subject: [PATCH 1/2] Upgrade to FilamentPHP 5.x --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 347c842b..caa7db3b 100644 --- a/composer.json +++ b/composer.json @@ -22,8 +22,8 @@ "php": "^8.2", "ext-simplexml": "*", "doctrine/dbal": "^3.6", - "filament/filament": "^4.0", - "filament/spatie-laravel-settings-plugin": "^4.0", + "filament/filament": "^5.0", + "filament/spatie-laravel-settings-plugin": "^5.0", "guzzlehttp/guzzle": "^7.8", "illuminate/cache": "^11.35.0", "illuminate/console": "^11.35.0", @@ -48,10 +48,10 @@ "laravel/pail": "^1.1", "laravel/pint": "^1.24", "orchestra/testbench": "^9.15.1", - "pestphp/pest": "^3.8", - "pestphp/pest-plugin-laravel": "^3.0", + "pestphp/pest": "^4.3", + "pestphp/pest-plugin-laravel": "^4.0", "pestphp/pest-plugin-livewire": "*", - "pestphp/pest-plugin-type-coverage": "^3.3" + "pestphp/pest-plugin-type-coverage": "^4.0" }, "minimum-stability": "dev", "prefer-stable": true, From 3696356b0f11552cde02b6493dc04e6a146adf33 Mon Sep 17 00:00:00 2001 From: James Brooks Date: Thu, 25 Jun 2026 10:08:06 +0100 Subject: [PATCH 2/2] Require PHP 8.3+ for Filament 5 / Pest 4 toolchain Filament 5 pulls in Livewire 4, which is only testable via pest-plugin-livewire v4 -> Pest ^4.3 -> PHP ^8.3. PHP 8.2 can no longer install the dev toolchain, so bump the package's minimum PHP to ^8.3 and drop 8.2 from the CI matrices. Co-Authored-By: Claude Opus 4.8 (1M context) --- .github/workflows/run-tests.yml | 12 ++++++------ composer.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 29c0dfab..66e01997 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -55,7 +55,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4, 8.3, 8.2] + php: [8.4, 8.3] laravel: [12.x, 11.x] stability: [prefer-lowest, prefer-stable] @@ -111,7 +111,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4, 8.3, 8.2] + php: [8.4, 8.3] laravel: [12.x, 11.x] stability: [prefer-lowest, prefer-stable] @@ -181,7 +181,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4, 8.3, 8.2] + php: [8.4, 8.3] laravel: [12.x, 11.x] stability: [prefer-lowest, prefer-stable] @@ -251,7 +251,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4, 8.3, 8.2] + php: [8.4, 8.3] laravel: [12.x, 11.x] stability: [ prefer-lowest, prefer-stable ] @@ -321,7 +321,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4, 8.3, 8.2] + php: [8.4, 8.3] laravel: [12.x, 11.x] stability: [ prefer-lowest, prefer-stable ] @@ -379,7 +379,7 @@ jobs: strategy: fail-fast: false matrix: - php: [8.4, 8.3, 8.2] + php: [8.4, 8.3] laravel: [12.x, 11.x] stability: [ prefer-lowest, prefer-stable ] diff --git a/composer.json b/composer.json index 24ac8e5e..3acbd78d 100644 --- a/composer.json +++ b/composer.json @@ -19,7 +19,7 @@ "source": "https://github.com/cachethq/core" }, "require": { - "php": "^8.2", + "php": "^8.3", "ext-simplexml": "*", "doctrine/dbal": "^3.6", "filament/filament": "^5.0",