From 772585ab581a0398abfa12538713e80f4b27b037 Mon Sep 17 00:00:00 2001 From: Ben McKay Date: Tue, 21 Jan 2025 20:28:36 -0600 Subject: [PATCH 1/7] Add PHP 8.3 Add PHP 8.3 to the test workflow --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index cc40153..7cece77 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -18,7 +18,7 @@ jobs: strategy: fail-fast: false matrix: - php: [7.3, 7.4, 8.0, 8.1, 8.2] + php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3] laravel: [8.*, 9.*, 10.*, 11.*] dependency-version: [prefer-lowest, prefer-stable] include: @@ -43,6 +43,9 @@ jobs: - laravel: 8.* php: 8.2 + - laravel: 8.* + php: 8.3 + # Laravel 9 requires PHP 8.0. - laravel: 9.* php: 7.3 From 94f83603f2ac77b3458c32890a317c5460699909 Mon Sep 17 00:00:00 2001 From: Ben McKay Date: Tue, 21 Jan 2025 20:34:21 -0600 Subject: [PATCH 2/7] Update tests.yml --- .github/workflows/tests.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 7cece77..03605a9 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,6 +11,8 @@ on: schedule: - cron: "0 0 * * *" + workflow_dispatch: + jobs: test: runs-on: ubuntu-22.04 From c2ea8be05d9bdfa85be8faf7ab29526e1205ef1c Mon Sep 17 00:00:00 2001 From: Ben McKay Date: Tue, 21 Jan 2025 20:37:47 -0600 Subject: [PATCH 3/7] Update README.md for laravel and PHP versions table. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 78a6fe4..01a715b 100644 --- a/README.md +++ b/README.md @@ -500,7 +500,11 @@ HYBRID_INTEGRATION=1 ./vendor/bin/phpunit 10 - 8.1 + 8.1 - 8.3 + + + 11 + 8.2 - 8.3 From 70cf25a3f56744b789abc25ac12bdd58c298fc54 Mon Sep 17 00:00:00 2001 From: Ben McKay Date: Tue, 21 Jan 2025 20:41:42 -0600 Subject: [PATCH 4/7] Update README.md formatting --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 01a715b..809a79b 100644 --- a/README.md +++ b/README.md @@ -490,7 +490,7 @@ HYBRID_INTEGRATION=1 ./vendor/bin/phpunit 8.0 - 8.1 - 1.5 + 1.5 8 7.3 - 8.0 From 8f3bb89cf7b1e7c3185407f13dea00a4d6fe4d78 Mon Sep 17 00:00:00 2001 From: Ben McKay Date: Tue, 21 Jan 2025 20:43:01 -0600 Subject: [PATCH 5/7] Update tests.yml for PHP 8.4 --- .github/workflows/tests.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 03605a9..1cfd8e5 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -20,7 +20,7 @@ jobs: strategy: fail-fast: false matrix: - php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3] + php: [7.3, 7.4, 8.0, 8.1, 8.2, 8.3, 8.4] laravel: [8.*, 9.*, 10.*, 11.*] dependency-version: [prefer-lowest, prefer-stable] include: @@ -48,6 +48,9 @@ jobs: - laravel: 8.* php: 8.3 + - laravel: 8.* + php: 8.4 + # Laravel 9 requires PHP 8.0. - laravel: 9.* php: 7.3 From 149b57f671221dfd80aec43ebeca92a70ed30c22 Mon Sep 17 00:00:00 2001 From: Ben McKay Date: Tue, 21 Jan 2025 20:52:16 -0600 Subject: [PATCH 6/7] Update README.md for laravel and php versions --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 809a79b..4080aa4 100644 --- a/README.md +++ b/README.md @@ -496,15 +496,15 @@ HYBRID_INTEGRATION=1 ./vendor/bin/phpunit 9 - 8.0 - 8.1 + 8.0 - 8.4 10 - 8.1 - 8.3 + 8.1 - 8.4 11 - 8.2 - 8.3 + 8.2 - 8.4 From 8bc6d67de399ebc4612edd69c52b7d2ee4f59e5e Mon Sep 17 00:00:00 2001 From: Ben McKay Date: Tue, 21 Jan 2025 20:55:22 -0600 Subject: [PATCH 7/7] Remove worflow_dispatch --- .github/workflows/tests.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1cfd8e5..4dea323 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,8 +11,6 @@ on: schedule: - cron: "0 0 * * *" - workflow_dispatch: - jobs: test: runs-on: ubuntu-22.04