From d3b385b3d26a026371d467451e6023ed0e51b233 Mon Sep 17 00:00:00 2001 From: Liam Hammett Date: Sat, 9 May 2026 20:53:33 +0100 Subject: [PATCH 1/2] Add Laravel 13 support --- .github/workflows/main.yml | 4 +++- composer.json | 8 ++++---- phpunit.xml | 5 ----- 3 files changed, 7 insertions(+), 10 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index c1b3b48..eb5950a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,13 +13,15 @@ jobs: matrix: os: [ubuntu-latest] php: [8.4, 8.3, 8.2] - laravel: [^12.0, ^11.0] + laravel: [^13.0, ^12.0, ^11.0] dependency-version: [prefer-lowest, prefer-stable] include: - laravel: ^11.0 testbench: ^9.0 - laravel: ^12.0 testbench: ^10.0 + - laravel: ^13.0 + testbench: ^11.0 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.dependency-version }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 9b7c3e3..7376dc7 100644 --- a/composer.json +++ b/composer.json @@ -20,12 +20,12 @@ } ], "require": { - "php": "^8.0", - "illuminate/support": "^11.0|^12.0", - "illuminate/console": "^11.0|^12.0" + "php": "^8.2", + "illuminate/support": "^11.0|^12.0|^13.0", + "illuminate/console": "^11.0|^12.0|^13.0" }, "require-dev": { - "orchestra/testbench": "^9.0|^10.0", + "orchestra/testbench": "^9.0|^10.0|^11.0", "phpunit/phpunit": "^11.0", "roave/security-advisories": "dev-master" }, diff --git a/phpunit.xml b/phpunit.xml index 9a91eab..11c433c 100644 --- a/phpunit.xml +++ b/phpunit.xml @@ -9,11 +9,6 @@ ./tests/Unit - - - ./app - - From 06c1810fc17d1847edefd95a0b4e5163ca90f47f Mon Sep 17 00:00:00 2001 From: Liam Hammett Date: Sat, 9 May 2026 20:55:58 +0100 Subject: [PATCH 2/2] Drop PHP 8.2 and Laravel 11 support --- .github/workflows/main.yml | 6 ++---- composer.json | 8 ++++---- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eb5950a..5794746 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,12 +12,10 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest] - php: [8.4, 8.3, 8.2] - laravel: [^13.0, ^12.0, ^11.0] + php: [8.4, 8.3] + laravel: [^13.0, ^12.0] dependency-version: [prefer-lowest, prefer-stable] include: - - laravel: ^11.0 - testbench: ^9.0 - laravel: ^12.0 testbench: ^10.0 - laravel: ^13.0 diff --git a/composer.json b/composer.json index 7376dc7..3347b44 100644 --- a/composer.json +++ b/composer.json @@ -20,12 +20,12 @@ } ], "require": { - "php": "^8.2", - "illuminate/support": "^11.0|^12.0|^13.0", - "illuminate/console": "^11.0|^12.0|^13.0" + "php": "^8.3", + "illuminate/support": "^12.0|^13.0", + "illuminate/console": "^12.0|^13.0" }, "require-dev": { - "orchestra/testbench": "^9.0|^10.0|^11.0", + "orchestra/testbench": "^10.0|^11.0", "phpunit/phpunit": "^11.0", "roave/security-advisories": "dev-master" },