From d7bb8f9f6be723ea039be4d73d67fc16a5d03437 Mon Sep 17 00:00:00 2001 From: Mehmet Faruk Demirkoparan Date: Tue, 30 Jun 2026 11:08:02 +0300 Subject: [PATCH 1/3] feat: add Laravel 13 support - Allow laravel/framework ^13.0 and PHP 8.4 - Bump testbench to ^11 and Pest to ^4 - Add Laravel 13 to CI test matrix --- .github/workflows/run-tests.yml | 10 ++++++++-- composer.json | 12 ++++++------ 2 files changed, 14 insertions(+), 8 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 27c69b6..e390609 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,13 +13,19 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest] - php: [8.2,8.3] - laravel: [12.*] + php: [8.2,8.3,8.4] + laravel: [12.*,13.*] stability: [prefer-lowest, prefer-stable] include: - laravel: 12.* testbench: 10.* carbon: ^3 + - laravel: 13.* + testbench: 11.* + carbon: ^3 + exclude: + - laravel: 13.* + php: 8.2 name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index 6c4ceb4..a82e150 100644 --- a/composer.json +++ b/composer.json @@ -16,18 +16,18 @@ } ], "require": { - "php": "^8.2|^8.3", + "php": "^8.2|^8.3|^8.4", "spatie/laravel-package-tools": "^1.14.0", - "laravel/framework": "^12.0" + "laravel/framework": "^12.0|^13.0" }, "require-dev": { "laravel/pint": "^1.0", "nunomaduro/collision": "^8.0", "nunomaduro/larastan": "^3", - "orchestra/testbench": "^10", - "pestphp/pest": "^3", - "pestphp/pest-plugin-arch": "^3", - "pestphp/pest-plugin-laravel": "^3", + "orchestra/testbench": "^10|^11", + "pestphp/pest": "^3|^4", + "pestphp/pest-plugin-arch": "^3|^4", + "pestphp/pest-plugin-laravel": "^3|^4", "phpstan/extension-installer": "^1.1", "phpstan/phpstan-deprecation-rules": "^2.0", "phpstan/phpstan-phpunit": "^2.0" From 26cf34c0bc8b4e3742bd00a2c6b255fc462c9fd1 Mon Sep 17 00:00:00 2001 From: Mehmet Faruk Demirkoparan Date: Tue, 30 Jun 2026 11:14:50 +0300 Subject: [PATCH 2/3] feat: add Laravel 13 support - Allow laravel/framework ^13.0 and PHP 8.4 - Bump testbench to ^11 and Pest to ^4 - Add Laravel 13 to CI test matrix --- .github/workflows/run-tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index e390609..e7b5d4e 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -72,7 +72,7 @@ jobs: run: composer show -D - name: Execute tests - run: vendor/bin/pest --ci + run: vendor/bin/pest --ci --no-coverage env: DB_USERNAME: connective DB_PASSWORD: connective From ef4f158b3135390556790f07795bd0f9fdb6960a Mon Sep 17 00:00:00 2001 From: Mehmet Faruk Demirkoparan Date: Tue, 30 Jun 2026 11:24:43 +0300 Subject: [PATCH 3/3] feat: add Laravel 13 support - Allow laravel/framework ^13.0 and PHP 8.4 - Bump testbench to ^11 and Pest to ^4 - Add Laravel 13 to CI test matrix --- .github/workflows/run-tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index e7b5d4e..ec55a1b 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -2,9 +2,7 @@ name: run-tests on: push: - branches: [main] pull_request: - branches: [main] jobs: test: