From 864a08144c02f3e42e53620cc8296dca20588721 Mon Sep 17 00:00:00 2001 From: Alex Ahlgreen Westergaard Date: Thu, 21 Dec 2023 22:48:56 +0100 Subject: [PATCH 1/4] Update PHP version to include v8.3 --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index a3d1c22..f02adac 100644 --- a/composer.json +++ b/composer.json @@ -7,6 +7,7 @@ "php80", "php81", "php82", + "php83", "analytics", "analytics 4", "google analytics", @@ -42,7 +43,7 @@ } }, "require": { - "php": ">=8.0,<8.3", + "php": ">=8.0,<=8.3", "guzzlehttp/guzzle": "^7.0" }, "require-dev": { From 13e7f0705fa5c740c903275625f0bd0e2c79e2f1 Mon Sep 17 00:00:00 2001 From: Alex Ahlgreen Westergaard Date: Thu, 21 Dec 2023 22:50:13 +0100 Subject: [PATCH 2/4] Update cd.yml --- .github/workflows/cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index 68ba1b7..ada4f1f 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -22,7 +22,7 @@ jobs: - name: "Setup PHP" uses: shivammathur/setup-php@v2 with: - php-version: "8.2" + php-version: "8.3" extensions: mbstring, intl ini-values: post_max_size=256M, max_execution_time=180 coverage: xdebug From 85e04fa71e0161f52f57bd9ded71c504e4092376 Mon Sep 17 00:00:00 2001 From: Alex Ahlgreen Westergaard Date: Thu, 21 Dec 2023 22:51:08 +0100 Subject: [PATCH 3/4] Add PHP8.3 to workflow ci.yml --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4b839af..28cd82b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -30,7 +30,7 @@ jobs: fail-fast: true matrix: operating-system: ["ubuntu-latest"] - php-versions: ["8.0", "8.1", "8.2"] + php-versions: ["8.0", "8.1", "8.2", "8.3"] steps: - name: "Checkout" @@ -82,7 +82,7 @@ jobs: fail-fast: true matrix: operating-system: ["ubuntu-latest"] - php-versions: ["8.0", "8.1", "8.2"] + php-versions: ["8.0", "8.1", "8.2", "8.3"] steps: - name: "Checkout" From 9c9da857c3fa18e6571e077aab5cd1c501fdee12 Mon Sep 17 00:00:00 2001 From: Alex Ahlgreen Westergaard Date: Thu, 21 Dec 2023 22:55:15 +0100 Subject: [PATCH 4/4] Update composer.json to anything below PHP 8.4 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index f02adac..fe5299c 100644 --- a/composer.json +++ b/composer.json @@ -43,7 +43,7 @@ } }, "require": { - "php": ">=8.0,<=8.3", + "php": ">=8.0,<8.4", "guzzlehttp/guzzle": "^7.0" }, "require-dev": {