Skip to content

Commit 4439d24

Browse files
authored
Merge pull request #134 from beyondcode/dev
5.0.0
2 parents 68aeca4 + 0f88e88 commit 4439d24

File tree

5 files changed

+29
-12
lines changed

5 files changed

+29
-12
lines changed

.github/workflows/run-tests.yml

+8-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
matrix:
1515
os: [ubuntu-latest]
1616
php: [8.0, 8.1, 8.2]
17-
laravel: ['8.*', '9.*', '10.*', '11.*']
17+
laravel: ['8.*', '9.*', '10.*', '11.*', '12.*']
1818
stability: [prefer-stable]
1919
exclude:
2020
- php: 8.0
@@ -25,6 +25,10 @@ jobs:
2525
php: 8.0
2626
- laravel: 11.*
2727
php: 8.1
28+
- laravel: 12.*
29+
php: 8.0
30+
- laravel: 12.*
31+
php: 8.1
2832
include:
2933
- laravel: 10.*
3034
testbench: 8.*
@@ -34,6 +38,8 @@ jobs:
3438
testbench: 6.23
3539
- laravel: 11.*
3640
testbench: 9.*
41+
- laravel: 12.*
42+
testbench: 10.*
3743

3844
name: P${{ matrix.php }} - L${{ matrix.laravel }} - ${{ matrix.stability }} - ${{ matrix.os }}
3945

@@ -51,7 +57,7 @@ jobs:
5157
- name: Install dependencies
5258
run: |
5359
composer install
54-
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --no-update
60+
composer require "laravel/framework:${{ matrix.laravel }}" "orchestra/testbench:${{ matrix.testbench }}" --no-interaction --dev --no-update
5561
composer update --${{ matrix.stability }} --prefer-dist --no-interaction
5662
5763
- name: Execute tests

README.md

+10
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,16 @@ composer require beyondcode/laravel-mailbox
2727

2828
Take a look at the [official documentation](https://docs.beyondco.de/laravel-mailbox).
2929

30+
## Catch, test and debug application mails with Laravel Herd
31+
32+
Laravel Herd provides an integrated local email service, streamlining the process of testing and debugging application emails.
33+
The email service organizes emails into distinct inboxes for each application, ensuring they are easily accessible and simple to locate.
34+
35+
[herd.laravel.com](https://herd.laravel.com)
36+
37+
![image](https://github.com/user-attachments/assets/6417907c-119d-43ac-9cf6-5638bafae24f)
38+
39+
3040
### Testing
3141

3242
``` bash

composer.json

+8-8
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,19 @@
1717
],
1818
"require": {
1919
"php": "^8.0",
20-
"illuminate/container": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
21-
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
22-
"illuminate/log": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
23-
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
24-
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
20+
"illuminate/container": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
21+
"illuminate/database": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
22+
"illuminate/log": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
23+
"illuminate/routing": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
24+
"illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
2525
"willdurand/email-reply-parser": "^2.8",
26-
"zbateson/mail-mime-parser": "^1.1|^2.4"
26+
"zbateson/mail-mime-parser": "^1.1|^2.4|^3.0"
2727
},
2828
"require-dev": {
2929
"laminas/laminas-mail": "^2.13",
3030
"mockery/mockery": "^1.2",
31-
"orchestra/testbench": "^4.0|^5.0|^7.0|^8.0|^9.0",
32-
"phpunit/phpunit": "^7.0|^8.0|^9.3|^10.5"
31+
"orchestra/testbench": "^4.0|^5.0|^7.0|^8.0|^9.0|^10.0",
32+
"phpunit/phpunit": "^7.0|^8.0|^9.3|^10.5|^11.5.3"
3333
},
3434
"autoload": {
3535
"psr-4": {

src/InboundEmail.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,8 @@ public function forward($recipients)
170170
return Mail::send([], [], function ($message) use ($recipients) {
171171
$message->to($recipients)
172172
->subject($this->subject())
173-
->setBody($this->body(), $this->message()->getContentType());
173+
->text($this->text())
174+
->html($this->html());
174175
});
175176
}
176177

src/Routing/Router.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ class Router
2424
/** @var Container */
2525
protected $container;
2626

27-
public function __construct(Container $container = null)
27+
public function __construct(?Container $container = null)
2828
{
2929
$this->container = $container ?: new Container;
3030

0 commit comments

Comments
 (0)