From bf8aac48e60a8618642098c4b872714daaa526f4 Mon Sep 17 00:00:00 2001 From: netlas Date: Mon, 8 Jun 2026 21:14:09 +0300 Subject: [PATCH] Add Laravel 13 support Bump illuminate/mail and illuminate/support to ^11.0|^12.0|^13.0, testbench to allow ^11.0, and update README requirements. --- README.md | 2 +- composer.json | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index ff1c817..99c27d8 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ Laravel package for sending emails and verifying email addresses through the [le ## Requirements - PHP 8.2+ -- Laravel 11 or 12 +- Laravel 11, 12, or 13 ## Installation diff --git a/composer.json b/composer.json index 92a0697..327625b 100644 --- a/composer.json +++ b/composer.json @@ -17,11 +17,11 @@ "require": { "php": "^8.2", "guzzlehttp/guzzle": "^7.0", - "illuminate/mail": "^11.0|^12.0", - "illuminate/support": "^11.0|^12.0" + "illuminate/mail": "^11.0|^12.0|^13.0", + "illuminate/support": "^11.0|^12.0|^13.0" }, "require-dev": { - "orchestra/testbench": "^9.0|^10.0", + "orchestra/testbench": "^9.0|^10.0|^11.0", "pestphp/pest": "^3.0|^4.0" }, "autoload": {