Skip to content

Commit

Permalink
Merge pull request #1 from ormelflores/feature/understand-laravel-11-…
Browse files Browse the repository at this point in the history
…compatibility

Feature/understand laravel 11 compatibility
  • Loading branch information
ormelflores authored Dec 8, 2024
2 parents 466cab6 + 7fbc838 commit e08df14
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 8 deletions.
14 changes: 13 additions & 1 deletion .github/workflows/run-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,11 @@ jobs:
strategy:
matrix:
php: [8.2, 8.1, 8.0, 7.4, 7.3, 7.2]
laravel: [10.*, 9.*, 8.*, 7.*, 6.*, 5.8.*, 5.7.*, 5.6.*, 5.5.*]
laravel: [11.*, 10.*, 9.*, 8.*, 7.*, 6.*, 5.8.*, 5.7.*, 5.6.*, 5.5.*]

include:
- laravel: 11.*
testbench: 9.*
- laravel: 10.*
testbench: 8.*
- laravel: 9.*
Expand All @@ -31,6 +33,16 @@ jobs:
testbench: 3.5.*

exclude:
- php: 7.2
laravel: 11.*
- php: 7.3
laravel: 11.*
- php: 7.4
laravel: 11.*
- php: 8.0
laravel: 11.*
- php: 8.1
laravel: 11.*
- php: 7.2
laravel: 10.*
- php: 7.3
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Laravel 5, 6, 7, 8, 9 and 10 integration for Understand.io
## Laravel 5, 6, 7, 8, 9, 10 and 11 integration for Understand.io

[![Latest Version on Packagist](https://img.shields.io/packagist/v/understand/understand-laravel5.svg?style=flat-square)](https://packagist.org/packages/understand/understand-laravel5)
[![Quality Score](https://img.shields.io/scrutinizer/g/understand/understand-laravel5.svg?style=flat-square)](https://scrutinizer-ci.com/g/understand/understand-laravel5)
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "understand/understand-laravel",
"description": "Laravel 5, 6, 7, 8, 9 and 10 service provider for Understand.io",
"description": "Laravel 5, 6, 7, 8, 9, 10 and 11 service provider for Understand.io",
"keywords": ["laravel", "understand.io", "understand", "logs"],
"license": "MIT",
"authors": [
Expand All @@ -12,11 +12,11 @@
"require": {
"php": "^5.5 || ^7.0 || ^8.0 || ^8.1 || ^8.2",
"ext-curl": "*",
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0"
"illuminate/support": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"orchestra/testbench": "3.* || 4.* || 5.* || 6.*",
"phpunit/phpunit": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^11.0",
"orchestra/testbench": "3.* || 4.* || 5.* || 6.* || 9.*",
"mockery/mockery": "^1.2",
"ext-json": "*"
},
Expand All @@ -32,7 +32,7 @@
},
"extra": {
"component": "package",
"frameworks": ["Laravel 5", "Laravel 6", "Laravel 7", "Laravel 8", "Laravel 9", "Laravel 10"],
"frameworks": ["Laravel 5", "Laravel 6", "Laravel 7", "Laravel 8", "Laravel 9", "Laravel 10", "Laravel 11"],
"branch-alias": {
"dev-master": "2.0-dev"
},
Expand Down
2 changes: 1 addition & 1 deletion src/Understand/UnderstandLaravel5/Logger.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Logger
/**
* Version Number
*/
const VERSION = 2.7;
const VERSION = 2.8;

/**
* Field provider
Expand Down

0 comments on commit e08df14

Please sign in to comment.