andreybolonin/flysystem-sftp

Flysystem的SFTP适配器

1.0.6 2015-09-20 13:14 UTC

This package is not auto-updated.

Last update: 2024-09-18 09:57:45 UTC


README

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

此适配器使用phpseclib为Flysystem提供SFTP适配器。

安装

composer require league/flysystem-sftp

使用方法

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);