diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b21e389..16e5fec 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -9,7 +9,7 @@ jobs: fail-fast: false matrix: os: [ubuntu-latest, windows-latest] - php: [8.2, 8.1] + php: [8.3, 8.2, 8.1] laravel: [10.*, 9.*] stability: [prefer-stable] include: diff --git a/CHANGELOG.md b/CHANGELOG.md index 7e38e20..a15cf07 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -55,6 +55,10 @@ The following changes are required when updating: ## Changes +### 2.1.0 + +- Add PHP 8.2 support + ### 2.0.0 - Minimum PHP requirement 8.1 diff --git a/composer.json b/composer.json index f238921..6de4747 100644 --- a/composer.json +++ b/composer.json @@ -20,7 +20,7 @@ } ], "require": { - "php": "~8.2.0 | ~8.1.0", + "php": "~8.3.0 | ~8.2.0 | ~8.1.0", "ext-json": "*", "guzzlehttp/guzzle": "^7.2", "illuminate/http": "^9.0 || ^10.0",