Skip to content

Commit

Permalink
Support for PHP 8.4 (#13)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored Nov 20, 2024
1 parent e1cc642 commit 0dc66a1
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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]
Expand All @@ -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 }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand All @@ -43,4 +43,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}

0 comments on commit 0dc66a1

Please sign in to comment.