From 7dfb41caf96d1af7db016bfe50aa363b51272878 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 24 Mar 2026 01:41:06 +1100 Subject: [PATCH 1/3] Let's see if this works --- .github/workflows/ci.yml | 9 +++++++-- composer.json | 24 ++++++++++++------------ 2 files changed, 19 insertions(+), 14 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77ed2c6..55c4868 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,13 +9,18 @@ on: jobs: tests: - runs-on: ubuntu-24.04 + runs-on: ubuntu-latest strategy: fail-fast: false matrix: stability: [prefer-stable] - versions: [ { php: 8.2, laravel: 10 }, { php: 8.3, laravel: 10 }, { php: 8.4, laravel: 10 }, { php: 8.2, laravel: 11 }, { php: 8.3, laravel: 11 }, { php: 8.4, laravel: 11 }, { php: 8.2, laravel: 12 }, { php: 8.3, laravel: 12 }, { php: 8.4, laravel: 12 } ] + versions: [ + { php: 8.2, laravel: 10 }, { php: 8.3, laravel: 10 }, { php: 8.4, laravel: 10 }, + { php: 8.2, laravel: 11 }, { php: 8.3, laravel: 11 }, { php: 8.4, laravel: 11 }, + { php: 8.2, laravel: 12 }, { php: 8.3, laravel: 12 }, { php: 8.4, laravel: 12 } + { php: 8.3, laravel: 13 }, { php: 8.4, laravel: 13 }, { php: 8.5, laravel: 13 } + ] name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} diff --git a/composer.json b/composer.json index ba9f779..7780b1b 100644 --- a/composer.json +++ b/composer.json @@ -20,22 +20,22 @@ ], "require": { "php": "^8.2", - "illuminate/routing": "^9.0|^10.0|^11.0|^12.0", - "illuminate/support": "^9.0|^10.0|^11.0|^12.0", + "illuminate/routing": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/support": "^9.0|^10.0|^11.0|^12.0|^13.0", "php-open-source-saver/fractal": "^1.0" }, "require-dev": { "friendsofphp/php-cs-fixer": "~3", - "illuminate/auth": "^9.0|^10.0|^11.0|^12.0", - "illuminate/cache": "^9.0|^10.0|^11.0|^12.0", - "illuminate/console": "^9.0|^10.0|^11.0|^12.0", - "illuminate/database": "^9.0|^10.0|^11.0|^12.0", - "illuminate/events": "^9.0|^10.0|^11.0|^12.0", - "illuminate/filesystem": "^9.0|^10.0|^11.0|^12.0", - "illuminate/log": "^9.0|^10.0|^11.0|^12.0", - "illuminate/pagination": "^9.0|^10.0|^11.0|^12.0", - "laravel/framework": "^9.0|^10.0|^11.0|^12.0", - "illuminate/translation": "^9.0|^10.0|^11.0|^12.0", + "illuminate/auth": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/cache": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/console": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/database": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/events": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/filesystem": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/log": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/pagination": "^9.0|^10.0|^11.0|^12.0|^13.0", + "laravel/framework": "^9.0|^10.0|^11.0|^12.0|^13.0", + "illuminate/translation": "^9.0|^10.0|^11.0|^12.0|^13.0", "mockery/mockery": "~1.0", "php-open-source-saver/jwt-auth": "^1.4 | ^2.8", "phpunit/phpunit": "^9.5|^10.5", From 727d833f71b71ff7c47393e4e624b0e15f67bf8b Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 24 Mar 2026 01:45:24 +1100 Subject: [PATCH 2/3] Forgot comma --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 55c4868..60c00d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: versions: [ { php: 8.2, laravel: 10 }, { php: 8.3, laravel: 10 }, { php: 8.4, laravel: 10 }, { php: 8.2, laravel: 11 }, { php: 8.3, laravel: 11 }, { php: 8.4, laravel: 11 }, - { php: 8.2, laravel: 12 }, { php: 8.3, laravel: 12 }, { php: 8.4, laravel: 12 } + { php: 8.2, laravel: 12 }, { php: 8.3, laravel: 12 }, { php: 8.4, laravel: 12 }, { php: 8.3, laravel: 13 }, { php: 8.4, laravel: 13 }, { php: 8.5, laravel: 13 } ] From 4735499b0c2ce5e5b7bf1eb521615455d7729fe2 Mon Sep 17 00:00:00 2001 From: Max Date: Tue, 24 Mar 2026 01:50:27 +1100 Subject: [PATCH 3/3] Fix the job name in CI --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 60c00d6..9c49a04 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -22,7 +22,7 @@ jobs: { php: 8.3, laravel: 13 }, { php: 8.4, laravel: 13 }, { php: 8.5, laravel: 13 } ] - name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} + name: PHP ${{ matrix.versions.php }} - Laravel ${{ matrix.versions.laravel }} steps: - name: Checkout code