Skip to content

Commit 8784219

Browse files
authored
Merge pull request #53 from patriziotomato/laravel12
Added support for Laravel 12
2 parents 451adf8 + 25f2d86 commit 8784219

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ jobs:
55
runs-on: ubuntu-latest
66
strategy:
77
matrix:
8-
php-versions: [ '8.2' ]
8+
php-versions: [ '8.2', '8.3', '8.4' ]
99
name: Testing on PHP ${{ matrix.php-versions }}
1010
steps:
1111
- name: Checkout

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
| 9.0 | ^7.0 |
1717
| 10.0 | ^8.0 |
1818
| 11.0 | ^9.0 |
19+
| 12.0 | ^10.0 |
1920

2021
A package to send [gelf](http://docs.graylog.org/en/2.1/pages/gelf.html) logs to a gelf compatible backend like graylog. It is a Laravel wrapper for [bzikarsky/gelf-php](https://github.com/bzikarsky/gelf-php) package.
2122

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@
2828
"require": {
2929
"php": "^8.2",
3030
"graylog2/gelf-php": "^2.0",
31-
"illuminate/log": "^11.0"
31+
"illuminate/log": "^12.0"
3232
},
3333
"require-dev": {
34-
"orchestra/testbench": "^9.0"
34+
"orchestra/testbench": "^10.0"
3535
},
3636
"autoload": {
3737
"psr-4": {

0 commit comments

Comments
 (0)