andreybolonin/flysystem-sftp

Flysystem adapter for SFTP

Installs: 38

Dependents: 0

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 94

pkg:composer/andreybolonin/flysystem-sftp

1.0.6 2015-09-20 13:14 UTC

This package is not auto-updated.

Last update: 2025-10-01 14:30:43 UTC


README

Author Build Status Coverage Status Quality Score Software License Packagist Version Total Downloads

This adapter uses phpseclib to provide a SFTP adapter for Flysystem.

Installation

composer require league/flysystem-sftp

Usage

use League\Flysystem\Sftp\SftpAdapter;
use League\Flysystem\Filesystem;

$adapter = new SftpAdapter([
    'host' => 'example.com',
    'port' => 21,
    'username' => 'username',
    'password' => 'password',
    'privateKey' => 'path/to/or/contents/of/privatekey',
    'root' => '/path/to/root',
    'timeout' => 10,
    'directoryPerm' => 0755
]);

$filesystem = new Filesystem($adapter);