Skip to content

Commit

Permalink
Support for Laravel 9 (#7)
Browse files Browse the repository at this point in the history
  • Loading branch information
pascalbaljet authored Feb 4, 2022
1 parent 88f54ce commit b08124f
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 4 deletions.
7 changes: 6 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,15 @@ jobs:
fail-fast: true
matrix:
php: [8.1, 8.0, 7.4]
laravel: [8.*]
laravel: [9.*, 8.*]
db: [mysql, postgres, sqlite]
dependency-version: [prefer-lowest, prefer-stable]
exclude:
- laravel: 9.*
php: 7.4
include:
- laravel: 9.*
testbench: 7.*
- laravel: 8.*
testbench: 6.*

Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to `laravel-eloquent-scope-as-select` will be documented in this file

## 1.3.0 - 2022-02-04

- Support for Laravel 9

## 1.2.0 - 2021-12-19

- Support for PHP 8.1
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Stop duplicating your Eloquent query scopes and constraints in PHP. This package
## Requirements

* PHP 7.4+
* Laravel 8.0
* Laravel 8.0 or 9.0

This package is tested with GitHub Actions using MySQL 5.7, 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 @@ -17,11 +17,11 @@
],
"require": {
"php": "^7.4|^8.0|^8.1",
"illuminate/support": "^8.67"
"illuminate/support": "^8.67|^9.0"
},
"require-dev": {
"mockery/mockery": "^1.3.3",
"orchestra/testbench": "^6.23",
"orchestra/testbench": "^6.23|7.0",
"phpunit/phpunit": "^9.4"
},
"autoload": {
Expand Down

0 comments on commit b08124f

Please sign in to comment.