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 252c406
Show file tree
Hide file tree
Showing 5 changed files with 2,605 additions and 1,726 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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,12 @@ 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

## [2.0.0] – 2022-02-06

### Added
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,18 +10,18 @@
}
],
"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": "^9.5 || ^10.0",
"roach-php/core": "^2.0 || ^3.0",
"spatie/laravel-package-tools": "^1.11"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.15",
"ergebnis/php-cs-fixer-config": "^5.0",
"orchestra/testbench": "^7.0 || ^8.0",
"phpunit/phpunit": "^9.5",
"phpunit/phpunit": "^10.4",
"roave/security-advisories": "dev-latest",
"spatie/phpunit-snapshot-assertions": "^4.2"
"spatie/phpunit-snapshot-assertions": "^5.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
Expand Down
Loading

0 comments on commit 252c406

Please sign in to comment.