Skip to content

Commit b7c276c

Browse files
authored
Deprecate Laravel/Filestem bridge (#1544)
1 parent b6d07fd commit b7c276c

File tree

3 files changed

+3
-28
lines changed

3 files changed

+3
-28
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-filesystem](https://github.com/async-aws/illuminate-filesystem) | [![Latest Stable Version](https://poser.pugx.org/async-aws/illuminate-filesystem/v/stable)](https://packagist.org/packages/async-aws/illuminate-filesystem) [![Total Downloads](https://poser.pugx.org/async-aws/illuminate-filesystem/downloads)](https://packagist.org/packages/async-aws/illuminate-filesystem) | [![](https://github.com/async-aws/illuminate-filesystem/workflows/BC%20Check/badge.svg?branch=master)](https://github.com/async-aws/illuminate-filesystem/actions) | [![](https://async-aws-pr.github.io/commits-since-release-counter/illuminate-filesystem.svg)](https://github.com/async-aws/illuminate-filesystem/releases) |
5958
| [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) |
6059
| [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) |
6160
| [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) |

docs/integration/laravel.md

Lines changed: 1 addition & 27 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, Filesystem, Mail and Queue.
9+
Cache, Mail and Queue.
1010

1111
## Illuminate Cache
1212

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

41-
## Illuminate Filesystem
42-
43-
Use S3 as filesystem.
44-
45-
### Install
46-
47-
```shell
48-
composer require async-aws/illuminate-filesystem
49-
```
50-
51-
### Configure
52-
53-
```diff
54-
# config/filesystems.php
55-
56-
's3' => [
57-
- 'driver' => 's3',
58-
+ 'driver' => 'async-aws-s3',
59-
'key' => env('AWS_ACCESS_KEY_ID'),
60-
'secret' => env('AWS_SECRET_ACCESS_KEY'),
61-
'region' => env('AWS_DEFAULT_REGION'),
62-
'bucket' => env('AWS_BUCKET'),
63-
'endpoint' => env('AWS_ENDPOINT'),
64-
],
65-
```
66-
6741
## Illuminate Mail
6842

6943
Send emails with SES.

src/Integration/Laravel/Filesystem/README.md

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

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

0 commit comments

Comments
 (0)