Skip to content

Commit 482bac5

Browse files
authored
Merge pull request #57 from Kravets1996/laravel-13-upgrade
Added support for Laravel 13
2 parents 1eff11c + 214cb09 commit 482bac5

3 files changed

Lines changed: 5 additions & 4 deletions

File tree

.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.3', '8.4' ]
8+
php-versions: [ '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
@@ -17,6 +17,7 @@
1717
| 10.0 | ^8.0 |
1818
| 11.0 | ^9.0 |
1919
| 12.0 | ^10.0 |
20+
| 13.0 | ^13.0 |
2021

2122
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.
2223

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@
2626
"source": "https://github.com/hedii/laravel-gelf-logger"
2727
},
2828
"require": {
29-
"php": "^8.2",
29+
"php": "^8.3",
3030
"graylog2/gelf-php": "^2.0",
31-
"illuminate/log": "^12.0"
31+
"illuminate/log": "^13.0"
3232
},
3333
"require-dev": {
34-
"orchestra/testbench": "^10.0"
34+
"orchestra/testbench": "^11.0"
3535
},
3636
"autoload": {
3737
"psr-4": {

0 commit comments

Comments
 (0)