From 8a44fe8c7728e1d4130599714f86ecd45c87a47c Mon Sep 17 00:00:00 2001 From: Christopher Gammie Date: Sat, 28 Mar 2026 16:49:04 +0000 Subject: [PATCH] feat: more upgrades and ensure laravel 13 works --- .github/workflows/tests.yml | 6 +++--- composer.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a2c69b8..724cdca 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -17,7 +17,7 @@ jobs: strategy: fail-fast: true matrix: - php: [8.2, 8.3, 8.4] + php: [8.2, 8.3, 8.4, 8.5] laravel: [11, 12, 13] phpunit: ['10.5', '11.0'] exclude: @@ -26,7 +26,7 @@ jobs: steps: - name: Checkout Code - uses: actions/checkout@v4 + uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -44,7 +44,7 @@ jobs: run: composer require "phpunit/phpunit:^${{ matrix.phpunit }}" --no-update - name: Install dependencies - uses: nick-fields/retry@v3 + uses: nick-fields/retry@v4 with: timeout_minutes: 5 max_attempts: 5 diff --git a/composer.json b/composer.json index 6be8e96..309b31c 100644 --- a/composer.json +++ b/composer.json @@ -25,7 +25,7 @@ "require": { "php": "^8.2", "ext-json": "*", - "cloudcreativity/json-api-testing": "^6.1", + "cloudcreativity/json-api-testing": "^6.3", "illuminate/http": "^11.0|^12.0|^13.0", "illuminate/support": "^11.0|^12.0|^13.0", "illuminate/testing": "^11.0|^12.0|^13.0" @@ -49,7 +49,7 @@ "dev-develop": "3.x-dev" } }, - "minimum-stability": "stable", + "minimum-stability": "dev", "prefer-stable": true, "config": { "sort-packages": true