Skip to content

Commit

Permalink
feat: add php 8.3 support
Browse files Browse the repository at this point in the history
  • Loading branch information
ksassnowski committed Jan 5, 2024
1 parent efa15e6 commit ba43d0c
Show file tree
Hide file tree
Showing 4 changed files with 2,458 additions and 1,448 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
php: [8.1, 8.2]
laravel: [9.*, 10.*]
php: [8.1, 8.2, 8.3]
laravel: [10.*]
dependency-version: [prefer-stable]
os: [ubuntu-latest]
include:
Expand Down
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,16 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [3.0.0] – 2024-01-05

### Added

- Added support for PHP 8.3

### Removed

- Dropped support for Laravel 9

## [2.0.0] – 2022-02-06

### Added
Expand Down
6 changes: 3 additions & 3 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@
}
],
"require": {
"php": "^8.1",
"laravel/framework": "^9.49 || ^10.0",
"roach-php/core": "^1.0 || ^2.0",
"php": "~8.1.0 || ~8.2.0 || ~8.3.0",
"laravel/framework": "^10.0",
"roach-php/core": "^2.0 || ^3.0",
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
Expand Down
Loading

0 comments on commit ba43d0c

Please sign in to comment.