PHPackages                             delboy1978uk/flysystem - 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. [File &amp; Storage](/categories/file-storage)
4. /
5. delboy1978uk/flysystem

ActiveLibrary[File &amp; Storage](/categories/file-storage)

delboy1978uk/flysystem
======================

Filesystem abstraction: Many filesystems, one API. Refactored for Legacy PHP 5.3

2.0.2(9y ago)0172MITPHP

Since Oct 28Pushed 9y ago1 watchersCompare

[ Source](https://github.com/delboy1978uk/flysystem)[ Packagist](https://packagist.org/packages/delboy1978uk/flysystem)[ RSS](/packages/delboy1978uk-flysystem/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (3)Versions (97)Used By (0)

League\\Flysystem for Legacy PHP
================================

[](#leagueflysystem-for-legacy-php)

[![Build Status](https://camo.githubusercontent.com/0a6f9f0fa677361e0773bab2498c71002068ba2d41194cf5e01b30b968cc83e4/68747470733a2f2f7472617669732d63692e6f72672f64656c626f7931393738756b2f666c7973797374656d2e706e673f6272616e63683d6d6173746572)](https://travis-ci.org/delboy1978uk/flysystem) [![Code Coverage](https://camo.githubusercontent.com/3a838dae39e77cfbc9f9a6c31e6acc347fa2b01e2325a969d7ac3b9dca500881/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f64656c626f7931393738756b2f666c7973797374656d2f6261646765732f636f7665726167652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/delboy1978uk/flysystem/?branch=master) [![Scrutinizer Code Quality](https://camo.githubusercontent.com/b52191ff483377893b35d975bbffef205de2db5c057323decae346f8c1b9075c/68747470733a2f2f7363727574696e697a65722d63692e636f6d2f672f64656c626f7931393738756b2f666c7973797374656d2f6261646765732f7175616c6974792d73636f72652e706e673f623d6d6173746572)](https://scrutinizer-ci.com/g/delboy1978uk/flysystem/?branch=master)

Slowly upgrading a legacy site? This is a fork which I refactored to use PHP5.3. Upgrade your site though! Instructions are the same but use array() and not \[\]

Flysystem is a filesystem abstraction which allows you to easily swap out a local filesystem for a remote one.

Goals
=====

[](#goals)

- Have a generic API for handling common tasks across multiple file storage engines.
- Have consistent output which you can rely on.
- Integrate well with other packages/frameworks.
- Be cacheable.
- Emulate directories in systems that support none, like AwsS3.
- Support third party plugins.
- Make it easy to test your filesystem interactions.
- Support streams for big file handling.

Installation
============

[](#installation)

Through Composer, obviously:

```
composer require delboy1978uk/flysystem

```

You can also use Flysystem without using Composer by registering an autoloader function:

```
spl_autoload_register(function($class) {
    $prefix = 'League\\Flysystem\\';

    if ( ! substr($class, 0, 17) === $prefix) {
        return;
    }

    $class = substr($class, strlen($prefix));
    $location = __DIR__ . 'path/to/flysystem/src/' . str_replace('\\', '/', $class) . '.php';

    if (is_file($location)) {
        require_once($location);
    }
});
```

Integrations
------------

[](#integrations)

Want to get started quickly? Check out some of these integrations:

- Laravel integration:
- Symfony integration:
- Zend Framework integration:
- CakePHP integration:
- Silex integration:
- Cilex integration:
- Yii 2 integration:
- Backup manager:
- Drupal:
- elFinder:

Adapters
--------

[](#adapters)

- Local
- Amazon Web Services - S3 V2:
- Amazon Web Services - S3 V3:
- Rackspace Cloud Files:
- Dropbox:
- OneDrive:
- Ftp
- Sftp (through phpseclib):
- Zip (through ZipArchive):
- WebDAV (through SabreDAV):
- PHPCR:
- Azure Blob Storage
- NullAdapter
- Redis (through Predis):
- Fallback:
- Memory:
- Google Cloud Storage:
- SinaAppEngine Storage:
- Gaufrette:

Caching
-------

[](#caching)

- Memory (array caching)
- Redis (through Predis)
- Memcached
- Adapter
- Stash

Documentation
-------------

[](#documentation)

[Check out the documentation](http://flysystem.thephpleague.com/)

Security
--------

[](#security)

If you discover any security related issues, please email  instead of using the issue tracker.

Enjoy
=====

[](#enjoy)

Oh and if you've come down this far, you might as well follow me on [twitter](http://twitter.com/frankdejonge).

###  Health Score

35

—

LowBetter than 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity10

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity79

Established project with proven stability

 Bus Factor1

Top contributor holds 83% 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 ~11 days

Total

92

Last Release

3633d ago

Major Versions

0.5.12 → 1.0.0-alpha12015-01-18

1.0.25 → 2.0.02016-07-19

### Community

Maintainers

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

---

Top Contributors

[![frankdejonge](https://avatars.githubusercontent.com/u/534693?v=4)](https://github.com/frankdejonge "frankdejonge (867 commits)")[![GrahamCampbell](https://avatars.githubusercontent.com/u/2829600?v=4)](https://github.com/GrahamCampbell "GrahamCampbell (63 commits)")[![twistor](https://avatars.githubusercontent.com/u/42400?v=4)](https://github.com/twistor "twistor (17 commits)")[![woodsae](https://avatars.githubusercontent.com/u/26761?v=4)](https://github.com/woodsae "woodsae (8 commits)")[![K-Phoen](https://avatars.githubusercontent.com/u/66958?v=4)](https://github.com/K-Phoen "K-Phoen (7 commits)")[![duncan3dc](https://avatars.githubusercontent.com/u/546811?v=4)](https://github.com/duncan3dc "duncan3dc (5 commits)")[![4d47](https://avatars.githubusercontent.com/u/729919?v=4)](https://github.com/4d47 "4d47 (5 commits)")[![barryvdh](https://avatars.githubusercontent.com/u/973269?v=4)](https://github.com/barryvdh "barryvdh (5 commits)")[![basz](https://avatars.githubusercontent.com/u/143068?v=4)](https://github.com/basz "basz (5 commits)")[![cramiro](https://avatars.githubusercontent.com/u/432391?v=4)](https://github.com/cramiro "cramiro (5 commits)")[![creocoder](https://avatars.githubusercontent.com/u/896494?v=4)](https://github.com/creocoder "creocoder (5 commits)")[![WyriHaximus](https://avatars.githubusercontent.com/u/147145?v=4)](https://github.com/WyriHaximus "WyriHaximus (5 commits)")[![romeOz](https://avatars.githubusercontent.com/u/3135712?v=4)](https://github.com/romeOz "romeOz (4 commits)")[![hassankhan](https://avatars.githubusercontent.com/u/1781985?v=4)](https://github.com/hassankhan "hassankhan (4 commits)")[![staabm](https://avatars.githubusercontent.com/u/120441?v=4)](https://github.com/staabm "staabm (4 commits)")[![jeroenvdgulik](https://avatars.githubusercontent.com/u/242090?v=4)](https://github.com/jeroenvdgulik "jeroenvdgulik (4 commits)")[![sparkweb](https://avatars.githubusercontent.com/u/1682258?v=4)](https://github.com/sparkweb "sparkweb (4 commits)")[![turneliusz](https://avatars.githubusercontent.com/u/624797?v=4)](https://github.com/turneliusz "turneliusz (3 commits)")[![kristianedlund](https://avatars.githubusercontent.com/u/1947488?v=4)](https://github.com/kristianedlund "kristianedlund (3 commits)")[![remicollet](https://avatars.githubusercontent.com/u/270445?v=4)](https://github.com/remicollet "remicollet (2 commits)")

---

Tags

ftpfilesystemabstractions3awscloudsftpfilesstorageWebDAVfilesystemsremotedropboxrackspacecopy.comCloud Filesfile systems

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/delboy1978uk-flysystem/health.svg)

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

###  Alternatives

[league/flysystem

File storage abstraction for PHP

13.6k665.7M2.4k](/packages/league-flysystem)[verseles/flyclone

PHP wrapper for rclone

102.2k](/packages/verseles-flyclone)[creocoder/yii2-flysystem

The flysystem extension for the Yii framework

2861.7M63](/packages/creocoder-yii2-flysystem)

PHPackages © 2026

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