diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index f8a28ba..8f253c4 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -7,7 +7,7 @@ on: jobs: - laravel-10-on-php-82: + laravel-10-on-php-82-83: name: PHP${{ matrix.php }} TB${{ matrix.testbench }} ${{ matrix.os-title }} ${{ matrix.dependency-prefer-title }} runs-on: ${{ matrix.os }} @@ -15,7 +15,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, macos-latest, windows-latest] - php: [8.2] + php: [8.3, 8.2] testbench: ["^8.0"] phpunit: ["^10.1.0"] dependency-prefer: [prefer-stable, prefer-lowest] @@ -72,7 +72,7 @@ jobs: - name: Execute tests run: vendor/bin/phpunit --configuration=${{ matrix.phpunit-config-file }} --no-coverage --stop-on-error --stop-on-failure - laravel-9-on-php-82: + laravel-9-on-php-82-83: name: PHP${{ matrix.php }} TB${{ matrix.testbench }} ${{ matrix.os-title }} ${{ matrix.dependency-prefer-title }} runs-on: ${{ matrix.os }} @@ -80,7 +80,7 @@ jobs: fail-fast: true matrix: os: [ubuntu-latest, macos-latest, windows-latest] - php: [8.2] + php: [8.3, 8.2] testbench: ["^7.0"] phpunit: ["^9.6"] dependency-prefer: [prefer-stable, prefer-lowest] diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d14693..9044025 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), +## [0.0.2] - 2023-12-01 + +### Added +- Added support for PHP 8.3 + + + ## [0.0.1] - 2023-11-17 ### Added diff --git a/README.md b/README.md index 863a8dd..0c221d2 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # Clarity Context - Understand Your Exceptions [![Latest Version on Packagist](https://img.shields.io/packagist/v/code-distortion/clarity-context.svg?style=flat-square)](https://packagist.org/packages/code-distortion/clarity-context) -![PHP Version](https://img.shields.io/badge/PHP-8.0%20to%208.2-blue?style=flat-square) +![PHP Version](https://img.shields.io/badge/PHP-8.0%20to%208.3-blue?style=flat-square) ![Laravel](https://img.shields.io/badge/laravel-8%20to%2010-blue?style=flat-square) [![GitHub Workflow Status](https://img.shields.io/github/actions/workflow/status/code-distortion/clarity-context/run-tests.yml?branch=master&style=flat-square)](https://github.com/code-distortion/clarity-context/actions) [![Buy The World a Tree](https://img.shields.io/badge/treeware-%F0%9F%8C%B3-lightgreen?style=flat-square)](https://plant.treeware.earth/code-distortion/clarity-context) diff --git a/composer.json b/composer.json index 0ac188b..2b97223 100644 --- a/composer.json +++ b/composer.json @@ -21,8 +21,8 @@ } ], "require": { - "php": "8.0.* | 8.1.* | 8.2.*", - "code-distortion/staticall": "^0.0.2" + "php": "8.0.* | 8.1.* | 8.2.* | 8.3.*", + "code-distortion/staticall": "^0.0.3" }, "require-dev": { "infection/infection": "^0.26.19",