Skip to content

Commit 29490f1

Browse files
authored
Merge pull request #67 from ormelflores/master
Laravel 11 compatibility
2 parents 466cab6 + e08df14 commit 29490f1

File tree

4 files changed

+20
-8
lines changed

4 files changed

+20
-8
lines changed

.github/workflows/run-test.yml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,11 @@ jobs:
88
strategy:
99
matrix:
1010
php: [8.2, 8.1, 8.0, 7.4, 7.3, 7.2]
11-
laravel: [10.*, 9.*, 8.*, 7.*, 6.*, 5.8.*, 5.7.*, 5.6.*, 5.5.*]
11+
laravel: [11.*, 10.*, 9.*, 8.*, 7.*, 6.*, 5.8.*, 5.7.*, 5.6.*, 5.5.*]
1212

1313
include:
14+
- laravel: 11.*
15+
testbench: 9.*
1416
- laravel: 10.*
1517
testbench: 8.*
1618
- laravel: 9.*
@@ -31,6 +33,16 @@ jobs:
3133
testbench: 3.5.*
3234

3335
exclude:
36+
- php: 7.2
37+
laravel: 11.*
38+
- php: 7.3
39+
laravel: 11.*
40+
- php: 7.4
41+
laravel: 11.*
42+
- php: 8.0
43+
laravel: 11.*
44+
- php: 8.1
45+
laravel: 11.*
3446
- php: 7.2
3547
laravel: 10.*
3648
- php: 7.3

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## Laravel 5, 6, 7, 8, 9 and 10 integration for Understand.io
1+
## Laravel 5, 6, 7, 8, 9, 10 and 11 integration for Understand.io
22

33
[![Latest Version on Packagist](https://img.shields.io/packagist/v/understand/understand-laravel5.svg?style=flat-square)](https://packagist.org/packages/understand/understand-laravel5)
44
[![Quality Score](https://img.shields.io/scrutinizer/g/understand/understand-laravel5.svg?style=flat-square)](https://scrutinizer-ci.com/g/understand/understand-laravel5)

composer.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "understand/understand-laravel",
3-
"description": "Laravel 5, 6, 7, 8, 9 and 10 service provider for Understand.io",
3+
"description": "Laravel 5, 6, 7, 8, 9, 10 and 11 service provider for Understand.io",
44
"keywords": ["laravel", "understand.io", "understand", "logs"],
55
"license": "MIT",
66
"authors": [
@@ -12,11 +12,11 @@
1212
"require": {
1313
"php": "^5.5 || ^7.0 || ^8.0 || ^8.1 || ^8.2",
1414
"ext-curl": "*",
15-
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
15+
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
1616
},
1717
"require-dev": {
18-
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0 || ^9.0",
19-
"orchestra/testbench": "3.* || 4.* || 5.* || 6.*",
18+
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^11.0",
19+
"orchestra/testbench": "3.* || 4.* || 5.* || 6.* || 9.*",
2020
"mockery/mockery": "^1.2",
2121
"ext-json": "*"
2222
},
@@ -32,7 +32,7 @@
3232
},
3333
"extra": {
3434
"component": "package",
35-
"frameworks": ["Laravel 5", "Laravel 6", "Laravel 7", "Laravel 8", "Laravel 9", "Laravel 10"],
35+
"frameworks": ["Laravel 5", "Laravel 6", "Laravel 7", "Laravel 8", "Laravel 9", "Laravel 10", "Laravel 11"],
3636
"branch-alias": {
3737
"dev-master": "2.0-dev"
3838
},

src/Understand/UnderstandLaravel5/Logger.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ class Logger
99
/**
1010
* Version Number
1111
*/
12-
const VERSION = 2.7;
12+
const VERSION = 2.8;
1313

1414
/**
1515
* Field provider

0 commit comments

Comments
 (0)