Docs update related to Flysystem v1

This commit is contained in:
Milos Stojanovic
2020-03-14 10:32:52 +01:00
parent 8b3cfec58e
commit bceea62a5f

View File

@@ -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. 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. 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 ## 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: Sample configuration:
@@ -58,7 +58,7 @@ Sample configuration:
## SFTP Adapter ## SFTP Adapter
You must require additional library `composer require league/flysystem-sftp` 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: Sample configuration:
@@ -84,7 +84,7 @@ Sample configuration:
## Dropbox Adapter ## Dropbox Adapter
You must require additional library `composer require spatie/flysystem-dropbox` 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: Sample configuration:
@@ -110,7 +110,7 @@ Sample configuration:
## Amazon S3 Adapter (v3) ## Amazon S3 Adapter (v3)
You must require additional library `composer require league/flysystem-aws-s3-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: 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. 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: Sample configuration:
@@ -172,7 +172,7 @@ Sample configuration:
## Microsoft Azure Blob Storage ## Microsoft Azure Blob Storage
You must require additional library `composer require league/flysystem-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: 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. 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: Sample configuration: