From 222a123bbb133f2f76a70e175e0bc9fd35fd2cc6 Mon Sep 17 00:00:00 2001 From: erikn69 Date: Wed, 28 Feb 2024 12:20:16 -0500 Subject: [PATCH] Laravel 11.x Support --- .github/workflows/run-tests.yml | 10 +++++++++- README.md | 2 +- composer.json | 10 +++++----- 3 files changed, 15 insertions(+), 7 deletions(-) diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index 12ae18aa..432d5a58 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -13,8 +13,10 @@ jobs: fail-fast: false matrix: php: [7.4, 8.0, 8.1, 8.2, 8.3] - laravel: [ 10.*, 9.*, 8.*, 7.* ] + laravel: [ 11.*, 10.*, 9.*, 8.*, 7.* ] include: + - laravel: 11.* + testbench: 9.* - laravel: 10.* testbench: 8.* - laravel: 9.* @@ -24,6 +26,12 @@ jobs: - laravel: 7.* testbench: 5.* exclude: + - laravel: 11.* + php: 8.1 + - laravel: 11.* + php: 8.0 + - laravel: 11.* + php: 7.4 - laravel: 10.* php: 7.4 - laravel: 10.* diff --git a/README.md b/README.md index ee68cb5f..5198a7c7 100644 --- a/README.md +++ b/README.md @@ -26,7 +26,7 @@ Thank you for choosing OwenIt\LaravelAuditing! Version | Illuminate | Status | PHP Version :----------|:---------------|:------------------------|:------------ -13.x | 7.x.x - 10.x.x | Active support :rocket: | > = 7.3 \| 8.0 +13.x | 7.x.x - 11.x.x | Active support :rocket: | > = 7.3 \| 8.0 12.x | 6.x.x - 9.x.x | Active support | > = 7.3 \| 8.0 11.x | 5.8.x - 8.x.x | End of life | > = 7.3 10.x | 5.8.x - 7.x.x | End of life | > = 7.2.5 diff --git a/composer.json b/composer.json index 1c1a538f..f60d8092 100644 --- a/composer.json +++ b/composer.json @@ -40,15 +40,15 @@ ], "require": { "php": "^7.3|^8.0", - "illuminate/console": "^7.0|^8.0|^9.0|^10.0", - "illuminate/database": "^7.0|^8.0|^9.0|^10.0", - "illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0", + "illuminate/console": "^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0", + "illuminate/filesystem": "^7.0|^8.0|^9.0|^10.0|^11.0", "ext-json": "*" }, "require-dev": { - "phpunit/phpunit": "^9.0", + "phpunit/phpunit": "^9.6|^10.5", "mockery/mockery": "^1.0", - "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0", + "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0", "laravel/legacy-factories": "*" }, "autoload": {