PHPackages                             vladimir-yuldashev/flysystem-curlftp - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [HTTP &amp; Networking](/categories/http)
4. /
5. vladimir-yuldashev/flysystem-curlftp

ActiveLibrary[HTTP &amp; Networking](/categories/http)

vladimir-yuldashev/flysystem-curlftp
====================================

Flysystem Adapter for the FTP with cURL implementation

v2.3.0(4y ago)36353.9k—2.1%24[3 issues](https://github.com/vyuldashev/flysystem-curlftp/issues)[1 PRs](https://github.com/vyuldashev/flysystem-curlftp/pulls)1MITPHPPHP ^7.2.5|^8.0

Since May 7Pushed 2y ago6 watchersCompare

[ Source](https://github.com/vyuldashev/flysystem-curlftp)[ Packagist](https://packagist.org/packages/vladimir-yuldashev/flysystem-curlftp)[ RSS](/packages/vladimir-yuldashev-flysystem-curlftp/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (1)Dependencies (5)Versions (13)Used By (1)

Flysystem Adapter for the FTP with cURL implementation
======================================================

[](#flysystem-adapter-for-the-ftp-with-curl-implementation)

[![Latest Stable Version](https://camo.githubusercontent.com/1a075f5a1fe4ad146c468dfebaded79d9279df67c1426390a40dbf063257532c/68747470733a2f2f706f7365722e707567782e6f72672f766c6164696d69722d79756c6461736865762f666c7973797374656d2d6375726c6674702f762f737461626c653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/vladimir-yuldashev/flysystem-curlftp)[![Build Status](https://github.com/vyuldashev/flysystem-curlftp/workflows/Tests/badge.svg)](https://github.com/vyuldashev/flysystem-curlftp/actions)[![StyleCI](https://camo.githubusercontent.com/d225ebc2cdb3055f0dd0b9580036501af5d207cc8ff45e7cd7dd99f3c6031b66/68747470733a2f2f7374796c6563692e696f2f7265706f732f39303032383037352f736869656c643f6272616e63683d6d6173746572)](https://styleci.io/repos/90028075)[![License](https://camo.githubusercontent.com/8a5ffe15caf54ba7b292f8645152138c62e2e377f0827a89f6b25476798807ce/68747470733a2f2f706f7365722e707567782e6f72672f766c6164696d69722d79756c6461736865762f666c7973797374656d2d6375726c6674702f6c6963656e73653f666f726d61743d666c61742d737175617265)](https://packagist.org/packages/vladimir-yuldashev/flysystem-curlftp)

This package contains a [Flysystem](https://flysystem.thephpleague.com/) FTP adapter with cURL implementation. It supports both explicit and implicit SSL connections.

Installation
------------

[](#installation)

You can install the package via composer:

```
composer require vladimir-yuldashev/flysystem-curlftp
```

Usage
-----

[](#usage)

```
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
-------

[](#testing)

```
$ composer test
```

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE) for more information.

###  Health Score

45

—

FairBetter than 93% of packages

Maintenance18

Infrequent updates — may be unmaintained

Popularity48

Moderate usage in the ecosystem

Community27

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor1

Top contributor holds 66.4% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~140 days

Recently: every ~253 days

Total

12

Last Release

1759d ago

Major Versions

v1.1.1 → v2.0.02018-10-15

PHP version history (2 changes)v1.0.0PHP &gt;=5.5.9

v2.1.0PHP ^7.2.5|^8.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/bb199dc646ae797eac9b127f758c70728587312c35f29884d516c0cf5ba5065b?d=identicon)[vyuldashev](/maintainers/vyuldashev)

![](https://www.gravatar.com/avatar/43c3630c1a1fb1bb65e6246442c7d08ee2290392391571b2d00c7a47eb4e8021?d=identicon)[RubtsovAV](/maintainers/RubtsovAV)

---

Top Contributors

[![vyuldashev](https://avatars.githubusercontent.com/u/1809081?v=4)](https://github.com/vyuldashev "vyuldashev (95 commits)")[![marvinschroeder](https://avatars.githubusercontent.com/u/955978?v=4)](https://github.com/marvinschroeder "marvinschroeder (14 commits)")[![chinlung](https://avatars.githubusercontent.com/u/696924?v=4)](https://github.com/chinlung "chinlung (12 commits)")[![TechAlchemistry](https://avatars.githubusercontent.com/u/4455837?v=4)](https://github.com/TechAlchemistry "TechAlchemistry (7 commits)")[![simoheinonen](https://avatars.githubusercontent.com/u/3840367?v=4)](https://github.com/simoheinonen "simoheinonen (5 commits)")[![tristanveness](https://avatars.githubusercontent.com/u/12807752?v=4)](https://github.com/tristanveness "tristanveness (3 commits)")[![StyleCIBot](https://avatars.githubusercontent.com/u/11048387?v=4)](https://github.com/StyleCIBot "StyleCIBot (2 commits)")[![guenard](https://avatars.githubusercontent.com/u/1021524?v=4)](https://github.com/guenard "guenard (2 commits)")[![adrium](https://avatars.githubusercontent.com/u/23739584?v=4)](https://github.com/adrium "adrium (1 commits)")[![ExeQue](https://avatars.githubusercontent.com/u/23560353?v=4)](https://github.com/ExeQue "ExeQue (1 commits)")[![hyunkel010](https://avatars.githubusercontent.com/u/18744399?v=4)](https://github.com/hyunkel010 "hyunkel010 (1 commits)")

---

Tags

curlfilesystemfilesystem-libraryflysystemftpimplicit-sslphpthephpleague

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/vladimir-yuldashev-flysystem-curlftp/health.svg)

```
[![Health](https://phpackages.com/badges/vladimir-yuldashev-flysystem-curlftp/health.svg)](https://phpackages.com/packages/vladimir-yuldashev-flysystem-curlftp)
```

###  Alternatives

[friendsofsymfony/rest-bundle

This Bundle provides various tools to rapidly develop RESTful API's with Symfony

2.8k73.3M319](/packages/friendsofsymfony-rest-bundle)[illuminate/http

The Illuminate Http package.

11936.0M5.1k](/packages/illuminate-http)[twistor/flysystem-http

An HTTP adapter for Flysystem that uses basic PHP functions.

21253.8k3](/packages/twistor-flysystem-http)[lesstif/confluence-rest-api

Confluence REST API Client for PHP Users.

1713.3k](/packages/lesstif-confluence-rest-api)[rootsoft/laravel-ipfs

Laravel package to communicate with IPFS

323.9k](/packages/rootsoft-laravel-ipfs)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
