Skip to content

Commit

Permalink
Support for PHP 8.3. Dropped support for Laravel 9
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet committed Jan 2, 2024
1 parent 01cc897 commit 017e192
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 11 deletions.
6 changes: 2 additions & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,15 +8,13 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.2, 8.1]
laravel: [10.*, 9.*]
php: [8.3, 8.2, 8.1]
laravel: [10.*]
db: [mysql, postgres, sqlite]
dependency-version: [prefer-lowest, prefer-stable]
include:
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
testbench: 7.*

name: P${{ matrix.php }} - L${{ matrix.laravel }} - DB ${{ matrix.db }} - ${{ matrix.dependency-version }}

Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ Stop duplicating your Eloquent query scopes and constraints in PHP. This package

## Requirements

* PHP 8.0+
* Laravel 9.0
* PHP 8.1+
* Laravel 10.0

This package is tested with GitHub Actions using MySQL 8.0, PostgreSQL 10.8 and SQLite.

Expand Down
9 changes: 4 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,13 @@
}
],
"require": {
"php": "^8.1|^8.2",
"illuminate/support": "^9.0|^10.0",
"nesbot/carbon": "^2.66"
"php": "^8.1|^8.2|^8.3",
"illuminate/support": "^10.0"
},
"require-dev": {
"mockery/mockery": "^1.4.4",
"orchestra/testbench": "^7.0|^8.0",
"phpunit/phpunit": "^9.5"
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.4"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit 017e192

Please sign in to comment.