andreybolonin/flysystem-sftp

Flysystem adapter for SFTP

1.0.6 2015-09-20 13:14 UTC

This package is not auto-updated.

Last update: 2024-04-17 08:09:25 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);