Skip to content
Open
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,12 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.2, 8.3, 8.4]
laravel: [9.*, 10.*, 11.*]
laravel: [9.*, 10.*, 11.*, 12.*]
exclude:
- laravel: 11.*
php: 8.1
- laravel: 12.*
php: 8.1

name: P${{ matrix.php }} - L${{ matrix.laravel }}

Expand Down
11 changes: 6 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,12 @@ composer require ensi/laravel-query-builder-helpers

## Version Compatibility

| Laravel query builder helpers | Laravel | PHP |
|-------------------------------|----------------------------|----------------|
| ^0.1.0 | ^9.x | ^8.1 |
| ^0.1.4 | ^9.x \|\| ^10.x | ^8.1 |
| ^0.1.7 | ^9.x \|\| ^10.x \|\| ^11.x | ^8.1 |
| Laravel query builder helpers | Laravel | PHP |
|-------------------------------|---------------------------------------|----------------|
| ^0.1.0 | ^9.x | ^8.1 |
| ^0.1.4 | ^9.x \|\| ^10.x | ^8.1 |
| ^0.1.7 | ^9.x \|\| ^10.x \|\| ^11.x | ^8.1 |
| ^0.1.14 | ^9.x \|\| ^10.x \|\| ^11.x \|\| ^12.x | ^8.1 |

## Basic Usage

Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"license": "MIT",
"require": {
"php": "^8.1",
"laravel/framework": "^9.0 || ^10.0 || ^11.0",
"laravel/framework": "^9.0 || ^10.0 || ^11.0 || ^12.0",
"spatie/laravel-query-builder": "^5.0 || ^6.0"
},
"require-dev": {
Expand All @@ -15,7 +15,7 @@
"phpstan/extension-installer": "^1.3",
"phpstan/phpstan": "^1.11",
"spaze/phpstan-disallowed-calls": "^2.15",
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0"
"orchestra/testbench": "^7.0 || ^8.0 || ^9.0 || ^10.0"
},
"autoload": {
"psr-4": {
Expand Down