From 9c4cef107f65f131d4c4ae7c0bbe17f37c83d979 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Tue, 14 Feb 2023 13:04:43 -0600 Subject: [PATCH 1/3] note ses-v2 --- config/mail.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/mail.php b/config/mail.php index 049052ff..275a3c64 100644 --- a/config/mail.php +++ b/config/mail.php @@ -28,7 +28,7 @@ | sending an e-mail. You will specify which one you are using for your | mailers below. You are free to add additional mailers as required. | - | Supported: "smtp", "sendmail", "mailgun", "ses", + | Supported: "smtp", "sendmail", "mailgun", "ses", "ses-v2" | "postmark", "log", "array", "failover" | */ From 36202b20120956582f848c5b7ca46e2bac3bb763 Mon Sep 17 00:00:00 2001 From: Shakil Alam <30234430+itxshakil@users.noreply.github.com> Date: Wed, 15 Feb 2023 01:01:16 +0530 Subject: [PATCH 2/3] Add PHPUnit result cache to gitignore (#6105) --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index e6bbd7ae..3cb7c776 100644 --- a/.gitignore +++ b/.gitignore @@ -13,6 +13,7 @@ Homestead.yaml auth.json npm-debug.log yarn-error.log +.phpunit.result.cache /.fleet /.idea /.vscode From ad279a61d1a5df6c98e8de667cd4ade18df52bed Mon Sep 17 00:00:00 2001 From: Nicolas Grekas Date: Wed, 15 Feb 2023 17:11:56 +0100 Subject: [PATCH 3/3] Allow php-http/discovery as a composer plugin (#6106) --- composer.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index d5ef95d5..4958668f 100644 --- a/composer.json +++ b/composer.json @@ -57,7 +57,8 @@ "preferred-install": "dist", "sort-packages": true, "allow-plugins": { - "pestphp/pest-plugin": true + "pestphp/pest-plugin": true, + "php-http/discovery": true } }, "minimum-stability": "stable",