From bceea62a5fdb89eb72b2cafdcebbcdba1d6d1699 Mon Sep 17 00:00:00 2001 From: Milos Stojanovic Date: Sat, 14 Mar 2020 10:32:52 +0100 Subject: [PATCH] Docs update related to Flysystem v1 --- docs/configuration/storage.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/docs/configuration/storage.md b/docs/configuration/storage.md index e14d2d0..c0f8461 100644 --- a/docs/configuration/storage.md +++ b/docs/configuration/storage.md @@ -7,7 +7,7 @@ Different storage adapters are provided through the awesome [Flysystem](https:// You can use local filesystem (default), FTP, SFTP, Amazon S3, DigitalOcean Spaces, Microsoft Azure Blob, Dropbox and many others. -Please check the Flysystem [docs](https://flysystem.thephpleague.com/docs/) for the exact setup required for each adapter. +Please check the Flysystem [docs](https://flysystem.thephpleague.com/v1/docs/) for the exact setup required for each adapter. Note: Some adapters do not support folder operations or their support is limited. @@ -31,7 +31,7 @@ With default adapter you just need to configure where your `repository` folder i ``` ## FTP Adapter -See official [documentation](https://flysystem.thephpleague.com/docs/adapter/ftp/). +See official [documentation](https://flysystem.thephpleague.com/v1/docs/adapter/ftp/). Sample configuration: @@ -58,7 +58,7 @@ Sample configuration: ## SFTP Adapter You must require additional library `composer require league/flysystem-sftp` -See official [documentation](https://flysystem.thephpleague.com/docs/adapter/sftp/). +For more advanced options like using your private key or changing the document root see official [documentation](https://flysystem.thephpleague.com/v1/docs/adapter/sftp/). Sample configuration: @@ -84,7 +84,7 @@ Sample configuration: ## Dropbox Adapter You must require additional library `composer require spatie/flysystem-dropbox` -See official [documentation](https://flysystem.thephpleague.com/docs/adapter/dropbox/). +See official [documentation](https://flysystem.thephpleague.com/v1/docs/adapter/dropbox/). Sample configuration: @@ -110,7 +110,7 @@ Sample configuration: ## Amazon S3 Adapter (v3) You must require additional library `composer require league/flysystem-aws-s3-v3` -See official [documentation](https://flysystem.thephpleague.com/docs/adapter/aws-s3/). +See official [documentation](https://flysystem.thephpleague.com/v1/docs/adapter/aws-s3/). Sample configuration: @@ -142,7 +142,7 @@ You must require additional library `composer require league/flysystem-aws-s3-v3 The DigitalOcean Spaces API are compatible with those of S3. -See official [documentation](https://flysystem.thephpleague.com/docs/adapter/digitalocean-spaces/). +See official [documentation](https://flysystem.thephpleague.com/v1/docs/adapter/digitalocean-spaces/). Sample configuration: @@ -172,7 +172,7 @@ Sample configuration: ## Microsoft Azure Blob Storage You must require additional library `composer require league/flysystem-azure-blob-storage` -See official [documentation](https://flysystem.thephpleague.com/docs/adapter/azure/). +See official [documentation](https://flysystem.thephpleague.com/v1/docs/adapter/azure/). Sample configuration: @@ -202,7 +202,7 @@ You must require additional library `composer require league/flysystem-replicate The ReplicateAdapter facilitates smooth transitions between adapters, allowing an application to stay functional and migrate its files from one adapter to another. The adapter takes two other adapters, a source and a replica. Every change is delegated to both adapters, while all the read operations are passed onto the source only. -See official [documentation](https://flysystem.thephpleague.com/docs/adapter/replicate/). +See official [documentation](https://flysystem.thephpleague.com/v1/docs/adapter/replicate/). Sample configuration: