All Projects β†’ thephpleague β†’ Flysystem Sftp

thephpleague / Flysystem Sftp

Licence: mit
Flysystem Adapter for SFTP

Labels

Projects that are alternatives of or similar to Flysystem Sftp

pluGET
πŸ“¦ Powerful Package manager which updates plugins & server software for minecraft servers
Stars: ✭ 87 (-68.25%)
Mutual labels:  sftp
acid-store
A library for secure, deduplicated, transactional, and verifiable data storage
Stars: ✭ 48 (-82.48%)
Mutual labels:  sftp
iCtrl
UofT Engineering Lab Remote
Stars: ✭ 91 (-66.79%)
Mutual labels:  sftp
sftp-gateway
This repository contains a docker image configured to use the SSH File Transfer Protocol (SFTP) to transfer all its files to Cloud Blob Storage Services. This image can be deployed on a Kubernetes cluster with Helm.
Stars: ✭ 18 (-93.43%)
Mutual labels:  sftp
pro.webssh.net
iOS / iPadOS / macOS SSH Client
Stars: ✭ 108 (-60.58%)
Mutual labels:  sftp
nxshell
An easy to use new terminal.
Stars: ✭ 440 (+60.58%)
Mutual labels:  sftp
raptor
The definitive EasyEngine installer with fully functional backup-restore and SFTP functionalities included
Stars: ✭ 26 (-90.51%)
Mutual labels:  sftp
fake-sftp-server-rule
A JUnit rule that runs an in-memory SFTP server.
Stars: ✭ 34 (-87.59%)
Mutual labels:  sftp
ssh
golang ssh lib simple for use
Stars: ✭ 15 (-94.53%)
Mutual labels:  sftp
sshtools
Java SSH tools - easier SSH & SFTP in Java
Stars: ✭ 15 (-94.53%)
Mutual labels:  sftp
AndroidSSH
Simple SSH and SFTP client for Android
Stars: ✭ 95 (-65.33%)
Mutual labels:  sftp
dartssh2
SSH and SFTP client written in pure Dart, aiming to be feature-rich as well as easy to use.
Stars: ✭ 63 (-77.01%)
Mutual labels:  sftp
ssh2.nim
Async SSH, SCP and SFTP client for Nim, using libssh2 wrapper [WIP]
Stars: ✭ 17 (-93.8%)
Mutual labels:  sftp
ansible-sftp
SFTP server role for Ansible
Stars: ✭ 108 (-60.58%)
Mutual labels:  sftp
dakait
A tool to download files from your FTP/SFTP servers in an organized way.
Stars: ✭ 35 (-87.23%)
Mutual labels:  sftp
Remote-File-Manager
Server Based GUI File Manager
Stars: ✭ 55 (-79.93%)
Mutual labels:  sftp
as sftp
A plsql SFTP client package
Stars: ✭ 35 (-87.23%)
Mutual labels:  sftp
Electerm
πŸ“»Terminal/ssh/sftp client(linux, mac, win)
Stars: ✭ 4,763 (+1638.32%)
Mutual labels:  sftp
sftpcloudfs
SFTP interface to OpenStack Object Storage (Swift)
Stars: ✭ 37 (-86.5%)
Mutual labels:  sftp
fs2-ftp
Simple client for Ftp/Ftps/Sftp
Stars: ✭ 24 (-91.24%)
Mutual labels:  sftp

Flysystem Adapter for SFTP

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

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

Installation

composer require league/flysystem-sftp

Documentation

Full documentation of this adapter can be found here: https://flysystem.thephpleague.com/adapter/sftp/

Usage

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

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

$filesystem = new Filesystem($adapter);
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].