From a50a57e0eef70136dba1412eb7e2e1e92a10a577 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=92=D0=BE?= =?UTF-8?q?=D1=81=D0=BA=D1=80=D0=B5=D1=81=D0=B5=D0=BD=D1=81=D0=BA=D0=B8?= =?UTF-8?q?=D0=B9?= Date: Fri, 19 Dec 2025 14:27:09 +0300 Subject: [PATCH 1/3] Add Laravel 12 support --- composer.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/composer.json b/composer.json index 20ff529..1c6566c 100644 --- a/composer.json +++ b/composer.json @@ -5,7 +5,7 @@ "license": "MIT", "require": { "php": "^8.1", - "laravel/framework": "^9.0 || ^10.0 || ^11.0", + "laravel/framework": "^9.0 || ^10.0 || ^11.0 || ^12.0", "spatie/laravel-query-builder": "^5.0 || ^6.0" }, "require-dev": { @@ -15,7 +15,7 @@ "phpstan/extension-installer": "^1.3", "phpstan/phpstan": "^1.11", "spaze/phpstan-disallowed-calls": "^2.15", - "orchestra/testbench": "^7.0 || ^8.0 || ^9.0" + "orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0" }, "autoload": { "psr-4": { From cff8972882001e02cd537819745aa78f59e0809c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=92=D0=BE?= =?UTF-8?q?=D1=81=D0=BA=D1=80=D0=B5=D1=81=D0=B5=D0=BD=D1=81=D0=BA=D0=B8?= =?UTF-8?q?=D0=B9?= Date: Fri, 19 Dec 2025 16:50:01 +0300 Subject: [PATCH 2/3] Add Laravel 12 to CI matrix --- .github/workflows/run-tests.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index def3397..23dce43 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,10 +13,12 @@ jobs: fail-fast: true matrix: php: [8.1, 8.2, 8.3, 8.4] - laravel: [9.*, 10.*, 11.*] + laravel: [9.*, 10.*, 11.*, 12.*] exclude: - laravel: 11.* php: 8.1 + - laravel: 12.* + php: 8.1 name: P${{ matrix.php }} - L${{ matrix.laravel }} From 17681765cfc1eeb4e9ecdaf9a75a496ac9da593a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=95=D0=B2=D0=B3=D0=B5=D0=BD=D0=B8=D0=B9=20=D0=92=D0=BE?= =?UTF-8?q?=D1=81=D0=BA=D1=80=D0=B5=D1=81=D0=B5=D0=BD=D1=81=D0=BA=D0=B8?= =?UTF-8?q?=D0=B9?= Date: Fri, 19 Dec 2025 17:33:43 +0300 Subject: [PATCH 3/3] update README.md --- README.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index af22704..49e84bd 100644 --- a/README.md +++ b/README.md @@ -16,11 +16,12 @@ composer require ensi/laravel-query-builder-helpers ## Version Compatibility -| Laravel query builder helpers | Laravel | PHP | -|-------------------------------|----------------------------|----------------| -| ^0.1.0 | ^9.x | ^8.1 | -| ^0.1.4 | ^9.x \|\| ^10.x | ^8.1 | -| ^0.1.7 | ^9.x \|\| ^10.x \|\| ^11.x | ^8.1 | +| Laravel query builder helpers | Laravel | PHP | +|-------------------------------|---------------------------------------|----------------| +| ^0.1.0 | ^9.x | ^8.1 | +| ^0.1.4 | ^9.x \|\| ^10.x | ^8.1 | +| ^0.1.7 | ^9.x \|\| ^10.x \|\| ^11.x | ^8.1 | +| ^0.1.14 | ^9.x \|\| ^10.x \|\| ^11.x \|\| ^12.x | ^8.1 | ## Basic Usage