Skip to content

Commit

Permalink
Laravel 11 support (#22)
Browse files Browse the repository at this point in the history
  • Loading branch information
yasin-04 authored Nov 7, 2024
1 parent 4db5fe6 commit dce0529
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,15 @@ jobs:
strategy:
fail-fast: true
matrix:
php: [ 8.1, 8.2 ]
laravel: [ 9.*, 10.* ]
php: [ 8.2 ]
laravel: [ 9.*, 10.*, 11.* ]
include:
- laravel: 9.*
testbench: 7.*
- laravel: 10.*
testbench: 8.*
- laravel: 11.*
testbench: 9.*

name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }}

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ This can be useful when wanting to store emails sent for archive purposes.

You can install the package via composer:

For Laravel 9.x and 10.x
For Laravel 9.x, 10.x, 11.x (requires PHP version 8.2 or higher)

```bash
composer require pod-point/laravel-mail-export
Expand Down
10 changes: 5 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
}
],
"require": {
"php": "^8.1",
"illuminate/filesystem": "^9.0|^10.0",
"illuminate/mail": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"php": "^8.2",
"illuminate/filesystem": "^9.0|^10.0|^11.0",
"illuminate/mail": "^9.0|^10.0|^11.0",
"illuminate/support": "^9.0|^10.0|^11.0",
"nesbot/carbon": "^2.0"
},
"require-dev": {
"orchestra/testbench": "^7.0|^8.0"
"orchestra/testbench": "^7.0|^8.0|^9.0"
},
"autoload": {
"psr-4": {
Expand Down

0 comments on commit dce0529

Please sign in to comment.