diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 95cb980c..eaa6a013 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -13,10 +13,10 @@ jobs: strategy: matrix: - php: [8.0, 8.1, 8.2] + php: [8.0, 8.1, 8.2, 8.3] experimental: [ false ] include: - - php: 8.3 + - php: 8.4 experimental: true name: PHP${{ matrix.php }} diff --git a/.github/workflows/review.yml b/.github/workflows/review.yml index 41d0c889..13eaff32 100644 --- a/.github/workflows/review.yml +++ b/.github/workflows/review.yml @@ -10,7 +10,7 @@ jobs: strategy: matrix: - php: [8.1, 8.2] + php: [8.1, 8.2, 8.3] name: Mutation Testing Code Review Annotations ${{ matrix.php }} diff --git a/changelog.md b/changelog.md index 7cc9d441..ca29fac6 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## Unreleased +### Added +- Support for PHP8.3. + ## [3.10.0] ### Added diff --git a/composer.json b/composer.json index e72c02bc..e28d3ab4 100755 --- a/composer.json +++ b/composer.json @@ -12,7 +12,7 @@ "homepage": "https://jeroen-g.github.io/Explorer/", "keywords": ["Laravel", "Scout", "Elasticsearch", "Elastic", "search", "Explorer"], "require": { - "php": "8.0.*||8.1.*||8.2.*", + "php": "8.0.*||8.1.*||8.2.*||8.3.*", "elasticsearch/elasticsearch": "^7.16", "illuminate/support": "^9.0||^10.0", "laravel/scout": "^9.0||^10.0",