Skip to content
This repository was archived by the owner on Dec 9, 2022. It is now read-only.

Commit 35c1cdd

Browse files
authored
Support for Laravel 9 (#3)
1 parent ccf5267 commit 35c1cdd

File tree

5 files changed

+13
-23
lines changed

5 files changed

+13
-23
lines changed

.github/workflows/run-tests.yml

+6-1
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,15 @@ jobs:
99
fail-fast: true
1010
matrix:
1111
php: [8.1, 8.0, 7.4]
12-
laravel: [8.*]
12+
laravel: [9.*, 8.*]
1313
db: [mysql, postgres, sqlite]
1414
dependency-version: [prefer-lowest, prefer-stable]
15+
exclude:
16+
- laravel: 9.*
17+
php: 7.4
1518
include:
19+
- laravel: 9.*
20+
testbench: 7.*
1621
- laravel: 8.*
1722
testbench: 6.*
1823

.scrutinizer.yml

-19
This file was deleted.

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
All notable changes to `laravel-eloquent-where-not` will be documented in this file
44

5+
## 1.2.0 - 2022-02-04
6+
7+
- Support for Laravel 9
8+
59
## 1.1.0 - 2021-12-19
610

711
- Support for PHP 8.1

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
## Requirements
1212

1313
* PHP 7.4+
14-
* Laravel 8.0
14+
* Laravel 8.0 or 9.0
1515

1616
This package is tested with GitHub Actions using MySQL 5.7, PostgreSQL 10.8 and SQLite.
1717

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
],
1818
"require": {
1919
"php": "^7.4|^8.0|^8.1",
20-
"illuminate/support": "^8.76"
20+
"illuminate/support": "^8.76|^9.0"
2121
},
2222
"require-dev": {
2323
"mockery/mockery": "^1.3.3",
24-
"orchestra/testbench": "^6.23",
24+
"orchestra/testbench": "^6.23|^7.0",
2525
"phpunit/phpunit": "^9.4"
2626
},
2727
"autoload": {

0 commit comments

Comments
 (0)