2017 © Pedro Peláez
 

library flysystem-curlftp

Flysystem Adapter for the FTP with cURL implementation

image

vladimir-yuldashev/flysystem-curlftp

Flysystem Adapter for the FTP with cURL implementation

  • Friday, January 5, 2018
  • by vladimir-yuldashev
  • Repository
  • 4 Watchers
  • 6 Stars
  • 884 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 3 Forks
  • 1 Open issues
  • 6 Versions
  • 52 % Grown

The README.md

Flysystem Adapter for the FTP with cURL implementation

Latest Stable Version Build Status StyleCI License, (*1)

This package contains a Flysystem FTP adapter with cURL implementation. It supports both explicit and implicit SSL connections., (*2)

Installation

You can install the package via composer:, (*3)

``` bash composer require vladimir-yuldashev/flysystem-curlftp, (*4)


## Usage ``` php use League\Flysystem\Filesystem; use VladimirYuldashev\Flysystem\CurlFtpAdapter; $adapter = new CurlFtpAdapter([ 'host' => 'ftp.example.com', 'username' => 'username', 'password' => 'password', /** optional config settings */ 'port' => 21, 'root' => '/path/to/root', 'utf8' => true, 'ftps' => true, // use ftps:// with implicit TLS or ftp:// with explicit TLS 'ssl' => true, 'timeout' => 90, // connect timeout 'passive' => true, // default use PASV mode 'skipPasvIp' => true, // ignore the IP address in the PASV response 'sslVerifyPeer' => 0, // using 0 is insecure, use it only if you know what you're doing 'sslVerifyHost' => 0, // using 0 is insecure, use it only if you know what you're doing 'enableTimestampsOnUnixListings' => true, /** proxy settings */ 'proxyHost' => 'proxy-server.example.com', 'proxyPort' => 80, 'proxyUsername' => 'proxyuser', 'proxyPassword' => 'proxypassword', 'verbose' => false // set verbose mode on/off ]); $filesystem = new Filesystem($adapter);

Testing

bash $ composer test, (*5)

License

The MIT License (MIT). Please see License File for more information., (*6)

The Versions

05/01 2018

dev-master

9999999-dev

Flysystem Adapter for the FTP with cURL implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vladimir Yuldashev

05/01 2018

v1.0.4

1.0.4.0

Flysystem Adapter for the FTP with cURL implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vladimir Yuldashev

12/05 2017

v1.0.3

1.0.3.0

Flysystem Adapter for the FTP with cURL implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vladimir Yuldashev

08/05 2017

v1.0.2

1.0.2.0

Flysystem Adapter for the FTP with cURL implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vladimir Yuldashev

07/05 2017

v1.0.1

1.0.1.0

Flysystem Adapter for the FTP with cURL implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vladimir Yuldashev

07/05 2017

v1.0.0

1.0.0.0

Flysystem Adapter for the FTP with cURL implementation

  Sources   Download

MIT

The Requires

 

The Development Requires

by Vladimir Yuldashev