Skip to content

Commit

Permalink
Laravel 11.x Support
Browse files Browse the repository at this point in the history
  • Loading branch information
erikn69 committed Feb 28, 2024
1 parent 42ebec8 commit 222a123
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 7 deletions.
10 changes: 9 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.*
Expand All @@ -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.*
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -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": {
Expand Down

0 comments on commit 222a123

Please sign in to comment.