From 5e1d87908acf1d417166df30f05cb5450b34fa6a Mon Sep 17 00:00:00 2001 From: Jared Dunham Date: Thu, 3 Mar 2022 12:31:45 -0600 Subject: [PATCH] [9.x] Added new env options for v3 sftp adaptor (#7757) * Added new options for v3 sftp adaptor * Update filesystem.md Co-authored-by: Taylor Otwell --- filesystem.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/filesystem.md b/filesystem.md index 7b32707c38f..386f1f0fd43 100644 --- a/filesystem.md +++ b/filesystem.md @@ -129,9 +129,13 @@ Laravel's Flysystem integrations work great with SFTP; however, a sample configu 'password' => env('SFTP_PASSWORD'), // Optional SFTP Settings... + // 'hostFingerprint' => env('SFTP_HOST_FINGERPRINT'), + // 'maxTries' => 4, + // 'passphrase' => env('SFTP_PASSPHRASE'), // 'port' => env('SFTP_PORT', 22), // 'root' => env('SFTP_ROOT', ''), // 'timeout' => 30, + // 'useAgent' => true, ],