From 59dfb55f692b5d0334a04dcf6e273935f442967c Mon Sep 17 00:00:00 2001 From: Evan Schleret Date: Tue, 23 Jul 2024 09:02:30 +0200 Subject: [PATCH] fix: set php min version to 8.2 --- .github/workflows/run-tests.yml | 2 +- composer.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index c15c8423..0b19afa4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -17,7 +17,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, windows-latest] - php: [8.3, 8.2, 8.1] + php: [8.3, 8.2] stability: [prefer-lowest, prefer-stable] name: P${{ matrix.php }} - ${{ matrix.stability }} - ${{ matrix.os }} diff --git a/composer.json b/composer.json index aa3a1113..71ad2115 100644 --- a/composer.json +++ b/composer.json @@ -14,7 +14,7 @@ } ], "require": { - "php": "^8.1", + "php": "^8.2", "illuminate/config": "^11.16", "illuminate/support": "^11.16", "spatie/mjml-php": "^1.2"