From e3505e2c90c67c79137a0f4e6ae3d9b324d08807 Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 11:31:13 +0000 Subject: [PATCH 1/2] Bump dependencies for Laravel 13 --- composer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/composer.json b/composer.json index 69da44a..b913551 100644 --- a/composer.json +++ b/composer.json @@ -19,19 +19,19 @@ "require": { "php": "^8.0", "driftingly/rector-laravel": "^2.1", - "illuminate/contracts": "^11.0|^12.0", + "illuminate/contracts": "^11.0|^12.0|^13.0", "spatie/laravel-package-tools": "^1.9.2" }, "require-dev": { "friendsofphp/php-cs-fixer": "^3.8", "larastan/larastan": "^3.0", - "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0", - "pestphp/pest": "^1|^2|^3.7", - "pestphp/pest-plugin-laravel": "^1.1|^2.0|^3.1", + "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0|^11.0", + "pestphp/pest": "^1|^2|^3.7|^4.4", + "pestphp/pest-plugin-laravel": "^1.1|^2.0|^3.1|^4.1", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^1.0|^2.0", "phpstan/phpstan-phpunit": "^1.0|^2.0", - "phpunit/phpunit": "^9.0|^10.0|^11.5.3", + "phpunit/phpunit": "^9.0|^10.0|^11.5.3|^12.5.12", "rector/rector": "^2.0", "roave/security-advisories": "dev-latest", "spatie/invade": "^2.0", From 6d6ac90d37b52bbe56ff96806052153de3ee601f Mon Sep 17 00:00:00 2001 From: Shift Date: Thu, 5 Mar 2026 11:31:13 +0000 Subject: [PATCH 2/2] Update GitHub Actions for Laravel 13 --- .github/workflows/run-tests.yml | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index da9bdf1..366fcae 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,13 +17,18 @@ jobs: matrix: os: [ubuntu-latest] php: [8.2, 8.3, 8.4, 8.5] - laravel: ['11.*', '12.*'] + laravel: ['11.*', '12.*', '13.*'] stability: [prefer-stable] include: - laravel: 11.* testbench: 9.* - laravel: 12.* testbench: 10.* + - laravel: 13.* + testbench: 11.* + exclude: + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} @@ -53,7 +58,7 @@ jobs: - name: Upload coverage uses: gaelgirodon/ci-badges-action@v1 - if: "github.ref == 'refs/heads/main'" + if: github.ref == 'refs/heads/main' with: gist-id: 9dd8e508cb2433728d42a258193770eb token: ${{ secrets.GIST_TOKEN }}