Skip to content

Commit 00e73a7

Browse files
authored
Merge pull request #120 from laravel-shift/l9-compatibility
Laravel 9.x Compatibility
2 parents 8e29612 + cfb5364 commit 00e73a7

File tree

2 files changed

+20
-11
lines changed

2 files changed

+20
-11
lines changed

.github/workflows/ci.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -15,22 +15,22 @@ jobs:
1515
runs-on: ubuntu-latest
1616

1717
strategy:
18+
fail-fast: false
1819
matrix:
1920
php:
20-
- '7.3'
21-
- '7.4'
2221
- '8.0'
22+
- '8.1'
2323
laravel:
24-
- 7.*
2524
- 8.*
25+
- 9.*
2626
prefer:
2727
- 'prefer-lowest'
2828
- 'prefer-stable'
2929
include:
30-
- laravel: '7.*'
31-
testbench: '5.*'
3230
- laravel: '8.*'
3331
testbench: '6.*'
32+
- laravel: 9.*
33+
testbench: 7.*
3434

3535
name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} --${{ matrix.prefer }}
3636

composer.json

+15-6
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
{
22
"name": "rennokki/laravel-eloquent-query-cache",
33
"description": "Adding cache on your Laravel Eloquent queries' results is now a breeze.",
4-
"keywords": ["laravel", "caching", "eloquent", "remember", "query", "sql"],
4+
"keywords": [
5+
"laravel",
6+
"caching",
7+
"eloquent",
8+
"remember",
9+
"query",
10+
"sql"
11+
],
512
"license": "Apache-2.0",
613
"homepage": "https://github.com/renoki-co/laravel-eloquent-query-cache",
714
"authors": [
@@ -13,8 +20,8 @@
1320
}
1421
],
1522
"require": {
16-
"illuminate/database": "^7.30|^8.23",
17-
"illuminate/support": "^7.30|^8.23"
23+
"illuminate/database": "^8.83|^9.0.1",
24+
"illuminate/support": "^8.83|^9.0.1"
1825
},
1926
"autoload": {
2027
"psr-4": {
@@ -30,11 +37,13 @@
3037
"test": "vendor/bin/phpunit"
3138
},
3239
"require-dev": {
33-
"chelout/laravel-relationship-events": "^1.4",
40+
"chelout/laravel-relationship-events": "^1.5",
3441
"laravel/legacy-factories": "^1.3",
3542
"mockery/mockery": "^1.5",
36-
"orchestra/database": "^5.0|^6.0",
37-
"orchestra/testbench": "^6.24.0"
43+
"orchestra/database": "^6.28|^7.0",
44+
"orchestra/testbench": "^6.28|^7.0",
45+
"orchestra/testbench-core": "^6.28|^7.0",
46+
"phpunit/phpunit": "^9.5.13"
3847
},
3948
"config": {
4049
"sort-packages": true

0 commit comments

Comments
 (0)