Skip to content

Commit

Permalink
Added support for PHP 8.3
Browse files Browse the repository at this point in the history
  • Loading branch information
code-distortion committed Nov 30, 2023
1 parent acd0c48 commit c9cab00
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@ 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 }}
strategy:
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]
Expand Down Expand Up @@ -72,15 +72,15 @@ 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 }}
strategy:
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]
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c9cab00

Please sign in to comment.