Skip to content

Commit 9e58a20

Browse files
authored
Merge pull request #16 from laravel-shift/l9-compatibility
Laravel 9.x Compatibility
2 parents 0864c9d + 6f9e68a commit 9e58a20

File tree

3 files changed

+26
-10
lines changed

3 files changed

+26
-10
lines changed

.github/workflows/run-tests.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,16 @@ jobs:
1010
matrix:
1111
os: [ubuntu-latest, windows-latest]
1212
php: [8.0, 7.4]
13-
laravel: [8.*]
14-
stability: [prefer-lowest, prefer-stable]
13+
laravel: [9.*, 8.*]
14+
stability: [prefer-stable]
1515
include:
16+
- laravel: 9.*
17+
testbench: 7.*
1618
- laravel: 8.*
1719
testbench: 6.*
20+
exclude:
21+
- laravel: 9.*
22+
php: 7.4
1823

1924
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
2025

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,12 @@ The following changes are required when updating:
5151

5252
## Changes
5353

54+
### 1.1.0
55+
56+
- Add Laravel 9 support
57+
5458
### 1.0.1
59+
5560
- Add unofficial support for Lumen
5661

5762
### 1.0.0

composer.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -20,19 +20,19 @@
2020
}
2121
],
2222
"require": {
23-
"php": "^7.4|^8.0",
23+
"php": "^7.4 || ^8.0",
2424
"ext-json": "*",
2525
"guzzlehttp/guzzle": "^7.2",
26-
"illuminate/http": "^8.0",
27-
"illuminate/support": "^8.0",
26+
"illuminate/http": "^8.0 || ^9.0",
27+
"illuminate/support": "^8.0 || ^9.0",
2828
"spatie/laravel-package-tools": "^1.1"
2929
},
3030
"require-dev": {
31-
"orchestra/testbench": "^6.0",
32-
"phpunit/phpunit": "^9.3",
33-
"spatie/laravel-ray": "^1.12",
34-
"timacdonald/log-fake": "^1.9",
35-
"vimeo/psalm": "^4.4"
31+
"orchestra/testbench": "^7.0",
32+
"phpunit/phpunit": "^9.5.10",
33+
"spatie/laravel-ray": "^1.29",
34+
"timacdonald/log-fake": "dev-return-types",
35+
"vimeo/psalm": "^4.20"
3636
},
3737
"autoload": {
3838
"psr-4": {
@@ -44,6 +44,12 @@
4444
"Bilfeldt\\LaravelHttpClientLogger\\Tests\\": "tests"
4545
}
4646
},
47+
"repositories": [
48+
{
49+
"type": "vcs",
50+
"url": "https://github.com/bilfeldt/log-fake.git"
51+
}
52+
],
4753
"scripts": {
4854
"psalm": "vendor/bin/psalm",
4955
"test": "vendor/bin/phpunit --colors=always",

0 commit comments

Comments
 (0)