Skip to content

Commit 393bc2f

Browse files
committed
Support for PHP 8.4
1 parent e1cc642 commit 393bc2f

File tree

3 files changed

+4
-7
lines changed

3 files changed

+4
-7
lines changed

.github/workflows/run-tests.yml

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: true
1313
matrix:
14-
php: [8.3, 8.2, 8.1]
14+
php: [8.4, 8.3, 8.2]
1515
laravel: ["10.*", "11.*"]
1616
db: [mysql, postgres, sqlite]
1717
dependency-version: [prefer-lowest, prefer-stable]
@@ -20,9 +20,6 @@ jobs:
2020
testbench: 8.*
2121
- laravel: 11.*
2222
testbench: 9.*
23-
exclude:
24-
- laravel: 11.*
25-
php: 8.1
2623

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

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Stop duplicating your Eloquent query scopes and constraints in PHP. This package
1212

1313
## Requirements
1414

15-
* PHP 8.1+
15+
* PHP 8.2+
1616
* Laravel 10.0
1717

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

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
}
1717
],
1818
"require": {
19-
"php": "^8.1|^8.2|^8.3",
19+
"php": "^8.2|^8.3|^8.4",
2020
"illuminate/support": "^10.0|^11.0"
2121
},
2222
"require-dev": {
@@ -43,4 +43,4 @@
4343
},
4444
"minimum-stability": "dev",
4545
"prefer-stable": true
46-
}
46+
}

0 commit comments

Comments
 (0)