Skip to content

Commit 8633c71

Browse files
authored
Merge pull request #44 from beyondcode/dev
2.5.0
2 parents e369244 + 36854de commit 8633c71

File tree

3 files changed

+15
-11
lines changed

3 files changed

+15
-11
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,15 @@ Simply add the `Confirmed` event, and your listeners, to the `EventServiceProvid
102102

103103
For more information about registering events and listeners, please refer to the [Laravel docs](https://laravel.com/docs/events#registering-events-and-listeners).
104104

105+
## Catch, test and debug application mails with Laravel Herd
106+
107+
Laravel Herd provides an integrated local email service, streamlining the process of testing and debugging application emails.
108+
The email service organizes emails into distinct inboxes for each application, ensuring they are easily accessible and simple to locate.
109+
110+
[herd.laravel.com](https://herd.laravel.com)
111+
112+
![image](https://github.com/user-attachments/assets/6417907c-119d-43ac-9cf6-5638bafae24f)
113+
105114
### Testing
106115

107116
``` bash

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@
1717
],
1818
"require": {
1919
"php": "^7.3|^8.0",
20-
"illuminate/auth": "^8.0|^9.0|^10.0|^11.0",
21-
"illuminate/database": "^8.0|^9.0|^10.0|^11.0",
22-
"illuminate/notifications": "^8.0|^9.0|^10.0|^11.0",
23-
"illuminate/support": "^8.0|^9.0|^10.0|^11.0",
20+
"illuminate/auth": "^8.0|^9.0|^10.0|^11.0|^12.0",
21+
"illuminate/database": "^8.0|^9.0|^10.0|^11.0|^12.0",
22+
"illuminate/notifications": "^8.0|^9.0|^10.0|^11.0|^12.0",
23+
"illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
2424
"laravel/ui": "^3.0|^4.0"
2525
},
2626
"require-dev": {
27-
"phpunit/phpunit": "^9.0|^10.5",
28-
"orchestra/testbench": "^6.0|^9.5"
27+
"phpunit/phpunit": "^9.0|^10.5|^11.5.3",
28+
"orchestra/testbench": "^6.0|^9.5|^10.0"
2929
},
3030
"autoload": {
3131
"psr-4": {

phpunit.xml.dist

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<phpunit bootstrap="vendor/autoload.php"
33
backupGlobals="false"
4-
backupStaticAttributes="false"
54
colors="true"
6-
verbose="true"
7-
convertErrorsToExceptions="true"
8-
convertNoticesToExceptions="true"
9-
convertWarningsToExceptions="true"
105
processIsolation="false"
116
stopOnFailure="false">
127
<testsuites>

0 commit comments

Comments
 (0)