Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support for PHP 8.4 #13

Merged
merged 1 commit into from
Nov 20, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 1 addition & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
@@ -11,7 +11,7 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [8.3, 8.2, 8.1]
php: [8.4, 8.3, 8.2]
laravel: ["10.*", "11.*"]
db: [mysql, postgres, sqlite]
dependency-version: [prefer-lowest, prefer-stable]
@@ -20,9 +20,6 @@ jobs:
testbench: 8.*
- laravel: 11.*
testbench: 9.*
exclude:
- laravel: 11.*
php: 8.1

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

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@ Stop duplicating your Eloquent query scopes and constraints in PHP. This package

## Requirements

* PHP 8.1+
* PHP 8.2+
* Laravel 10.0

This package is tested with GitHub Actions using MySQL 8.0, PostgreSQL 10.8 and SQLite.
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -16,7 +16,7 @@
}
],
"require": {
"php": "^8.1|^8.2|^8.3",
"php": "^8.2|^8.3|^8.4",
"illuminate/support": "^10.0|^11.0"
},
"require-dev": {
@@ -43,4 +43,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}