Skip to content

Commit 02f202d

Browse files
authored
Deprecate Laravel/Mail bridge (#1547)
1 parent 6d56cba commit 02f202d

File tree

3 files changed

+3
-25
lines changed

3 files changed

+3
-25
lines changed

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,6 @@ See full documentation on [https://async-aws.com](https://async-aws.com).
5555
| [async-aws/async-aws-bundle](https://github.com/async-aws/symfony-bundle) | [![Latest Stable Version](https://poser.pugx.org/async-aws/async-aws-bundle/v/stable)](https://packagist.org/packages/async-aws/async-aws-bundle) [![Total Downloads](https://poser.pugx.org/async-aws/async-aws-bundle/downloads)](https://packagist.org/packages/async-aws/async-aws-bundle) | [![](https://github.com/async-aws/symfony-bundle/workflows/BC%20Check/badge.svg?branch=master)](https://github.com/async-aws/symfony-bundle/actions) | [![](https://async-aws-pr.github.io/commits-since-release-counter/symfony-bundle.svg)](https://github.com/async-aws/symfony-bundle/releases) |
5656
| [async-aws/dynamo-db-session](https://github.com/async-aws/dynamo-db-session) | [![Latest Stable Version](https://poser.pugx.org/async-aws/dynamo-db-session/v/stable)](https://packagist.org/packages/async-aws/dynamo-db-session) [![Total Downloads](https://poser.pugx.org/async-aws/dynamo-db-session/downloads)](https://packagist.org/packages/async-aws/dynamo-db-session) | [![](https://github.com/async-aws/dynamo-db-session/workflows/BC%20Check/badge.svg?branch=master)](https://github.com/async-aws/dynamo-db-session/actions) | [![](https://async-aws-pr.github.io/commits-since-release-counter/dynamo-db-session.svg)](https://github.com/async-aws/dynamo-db-session/releases) |
5757
| [async-aws/illuminate-cache](https://github.com/async-aws/illuminate-cache) | [![Latest Stable Version](https://poser.pugx.org/async-aws/illuminate-cache/v/stable)](https://packagist.org/packages/async-aws/illuminate-cache) [![Total Downloads](https://poser.pugx.org/async-aws/illuminate-cache/downloads)](https://packagist.org/packages/async-aws/illuminate-cache) | [![](https://github.com/async-aws/illuminate-cache/workflows/BC%20Check/badge.svg?branch=master)](https://github.com/async-aws/illuminate-cache/actions) | [![](https://async-aws-pr.github.io/commits-since-release-counter/illuminate-cache.svg)](https://github.com/async-aws/illuminate-cache/releases) |
58-
| [async-aws/illuminate-mail](https://github.com/async-aws/illuminate-mail) | [![Latest Stable Version](https://poser.pugx.org/async-aws/illuminate-mail/v/stable)](https://packagist.org/packages/async-aws/illuminate-mail) [![Total Downloads](https://poser.pugx.org/async-aws/illuminate-mail/downloads)](https://packagist.org/packages/async-aws/illuminate-mail) | [![](https://github.com/async-aws/illuminate-mail/workflows/BC%20Check/badge.svg?branch=master)](https://github.com/async-aws/illuminate-mail/actions) | [![](https://async-aws-pr.github.io/commits-since-release-counter/illuminate-mail.svg)](https://github.com/async-aws/illuminate-mail/releases) |
5958
| [async-aws/illuminate-queue](https://github.com/async-aws/illuminate-queue) | [![Latest Stable Version](https://poser.pugx.org/async-aws/illuminate-queue/v/stable)](https://packagist.org/packages/async-aws/illuminate-queue) [![Total Downloads](https://poser.pugx.org/async-aws/illuminate-queue/downloads)](https://packagist.org/packages/async-aws/illuminate-queue) | [![](https://github.com/async-aws/illuminate-queue/workflows/BC%20Check/badge.svg?branch=master)](https://github.com/async-aws/illuminate-queue/actions) | [![](https://async-aws-pr.github.io/commits-since-release-counter/illuminate-queue.svg)](https://github.com/async-aws/illuminate-queue/releases) |
6059
| [async-aws/monolog-cloud-watch](https://github.com/async-aws/monolog-cloud-watch) | [![Latest Stable Version](https://poser.pugx.org/async-aws/monolog-cloud-watch/v/stable)](https://packagist.org/packages/async-aws/monolog-cloud-watch) [![Total Downloads](https://poser.pugx.org/async-aws/monolog-cloud-watch/downloads)](https://packagist.org/packages/async-aws/monolog-cloud-watch) | [![](https://github.com/async-aws/monolog-cloud-watch/workflows/BC%20Check/badge.svg?branch=master)](https://github.com/async-aws/monolog-cloud-watch/actions) | [![](https://async-aws-pr.github.io/commits-since-release-counter/monolog-cloud-watch.svg)](https://github.com/async-aws/monolog-cloud-watch/releases) |
6160
| [async-aws/simple-s3](https://github.com/async-aws/simple-s3) | [![Latest Stable Version](https://poser.pugx.org/async-aws/simple-s3/v/stable)](https://packagist.org/packages/async-aws/simple-s3) [![Total Downloads](https://poser.pugx.org/async-aws/simple-s3/downloads)](https://packagist.org/packages/async-aws/simple-s3) | [![](https://github.com/async-aws/simple-s3/workflows/BC%20Check/badge.svg?branch=master)](https://github.com/async-aws/simple-s3/actions) | [![](https://async-aws-pr.github.io/commits-since-release-counter/simple-s3.svg)](https://github.com/async-aws/simple-s3/releases) |

docs/integration/laravel.md

Lines changed: 1 addition & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ category: integration
66

77
The AsyncAws integrations for Laravel are similar to the integrations for the
88
official AWS SDK. The sections below describe how you can install and configure
9-
Cache, Mail and Queue.
9+
Cache and Queue.
1010

1111
## Illuminate Cache
1212

@@ -38,29 +38,6 @@ key will not work.
3838
],
3939
```
4040

41-
## Illuminate Mail
42-
43-
Send emails with SES.
44-
45-
### Install
46-
47-
```shell
48-
composer require async-aws/illuminate-mail
49-
```
50-
51-
### Configure
52-
53-
```diff
54-
# config/mail.php
55-
56-
'ses' => [
57-
- 'driver' => 'ses',
58-
+ 'driver' => 'async-aws-ses',
59-
'key' => env('AWS_ACCESS_KEY_ID'),
60-
'secret' => env('AWS_SECRET_ACCESS_KEY'),
61-
],
62-
```
63-
6441
## Illuminate Queue
6542

6643
Use SQS with Illuminate Queue.

src/Integration/Laravel/Mail/README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
# AsyncAws Illuminate Mail integration
22

3+
**CAUTION**: this adapter is deprecated.
4+
35
![](https://github.com/async-aws/illuminate-mail/workflows/Tests/badge.svg?branch=master)
46
![](https://github.com/async-aws/illuminate-mail/workflows/BC%20Check/badge.svg?branch=master)
57

0 commit comments

Comments
 (0)