PHPackages                             rossriley/flysystem53 - 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. rossriley/flysystem53

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

rossriley/flysystem53
=====================

Many filesystems, one API. - This fork maintains PHP 5.3 compatibility while tracking upstream

1.1.5(11y ago)2131.5k↓27.1%1MITPHPPHP &gt;=5.3.0

Since Oct 28Pushed 11y ago1 watchersCompare

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

READMEChangelogDependencies (7)Versions (75)Used By (0)

League\\Flysystem
=================

[](#leagueflysystem)

[![Author](https://camo.githubusercontent.com/bf87237874a25aebcf58b7f23dfdeb9098e58b5c011ca83aed2b6e519a392d84/687474703a2f2f696d672e736869656c64732e696f2f62616467652f617574686f722d406672616e6b64656a6f6e67652d626c75652e7376673f7374796c653d666c61742d737175617265)](https://twitter.com/frankdejonge)[![Build Status](https://camo.githubusercontent.com/af456951adaef8bd0a55d668110e7f9dafd2d25408cc075c1d64c520e17299e2/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f7468657068706c65616775652f666c7973797374656d2f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/thephpleague/flysystem)[![Coverage Status](https://camo.githubusercontent.com/0efcb1fbebc85de3d22f573b3e6ba6cd1b8dc5694f823b660816d4fbba3eba5c/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f7468657068706c65616775652f666c7973797374656d2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/thephpleague/flysystem/code-structure)[![Quality Score](https://camo.githubusercontent.com/ac205e6bf3d2f2b3839e12f06b25ee7cf6c836ea9200f69aa2ef3f733c7c7ab8/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f7468657068706c65616775652f666c7973797374656d2e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/thephpleague/flysystem)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE)[![Packagist Version](https://camo.githubusercontent.com/d139ed1acae4a5eed42e3a24aafbe2daa78099ccb37e20723e47b43af46ebe9a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6c65616775652f666c7973797374656d2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/league/flysystem)[![Total Downloads](https://camo.githubusercontent.com/9b8fe990202aef5acede08b8283e085a42ff5bae096dbdca0c97e24790596ba9/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6c65616775652f666c7973797374656d2e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/league/flysystem)

[![SensioLabsInsight](https://camo.githubusercontent.com/5640bdd93950301bbc5065b4070f89a136cfbed664061bb317d537f6d8b8a8b5/68747470733a2f2f696e73696768742e73656e73696f6c6162732e636f6d2f70726f6a656374732f39383230663161662d326664302d346162362d623432612d3033653063383231653061662f6269672e706e67)](https://insight.sensiolabs.com/projects/9820f1af-2fd0-4ab6-b42a-03e0c821e0af)

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 league/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:
- Yii 2 integration:
- Backup manager:

Adapters
--------

[](#adapters)

- Local
- Amazon Web Services - S3:
- Rackspace Cloud Files:
- Dropbox:
- Copy:
- Ftp
- Sftp (through phpseclib):
- Zip (through ZipArchive):
- WebDAV (through SabreDAV):
- PHPCR:
- Azure Blob Storage
- NullAdapter

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

40

—

FairBetter than 88% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community21

Small or concentrated contributor base

Maturity73

Established project with proven stability

 Bus Factor1

Top contributor holds 80.9% 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 ~6 days

Total

72

Last Release

4110d ago

Major Versions

0.5.12 → 1.0.0-alpha12015-01-18

PHP version history (2 changes)0.5.0PHP &gt;=5.4.0

1.1PHP &gt;=5.3.0

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/5082?v=4)[Ross Riley](/maintainers/rossriley)[@rossriley](https://github.com/rossriley)

---

Top Contributors

[![frankdejonge](https://avatars.githubusercontent.com/u/534693?v=4)](https://github.com/frankdejonge "frankdejonge (636 commits)")[![GrahamCampbell](https://avatars.githubusercontent.com/u/2829600?v=4)](https://github.com/GrahamCampbell "GrahamCampbell (62 commits)")[![rossriley](https://avatars.githubusercontent.com/u/5082?v=4)](https://github.com/rossriley "rossriley (14 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)")[![creocoder](https://avatars.githubusercontent.com/u/896494?v=4)](https://github.com/creocoder "creocoder (5 commits)")[![4d47](https://avatars.githubusercontent.com/u/729919?v=4)](https://github.com/4d47 "4d47 (5 commits)")[![basz](https://avatars.githubusercontent.com/u/143068?v=4)](https://github.com/basz "basz (5 commits)")[![jeroenvdgulik](https://avatars.githubusercontent.com/u/242090?v=4)](https://github.com/jeroenvdgulik "jeroenvdgulik (4 commits)")[![staabm](https://avatars.githubusercontent.com/u/120441?v=4)](https://github.com/staabm "staabm (4 commits)")[![hassankhan](https://avatars.githubusercontent.com/u/1781985?v=4)](https://github.com/hassankhan "hassankhan (4 commits)")[![romeOz](https://avatars.githubusercontent.com/u/3135712?v=4)](https://github.com/romeOz "romeOz (3 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)")[![Markcial](https://avatars.githubusercontent.com/u/208523?v=4)](https://github.com/Markcial "Markcial (2 commits)")[![atans](https://avatars.githubusercontent.com/u/2189764?v=4)](https://github.com/atans "atans (2 commits)")[![dmyers](https://avatars.githubusercontent.com/u/207171?v=4)](https://github.com/dmyers "dmyers (2 commits)")[![WyriHaximus](https://avatars.githubusercontent.com/u/147145?v=4)](https://github.com/WyriHaximus "WyriHaximus (2 commits)")[![pborreli](https://avatars.githubusercontent.com/u/77759?v=4)](https://github.com/pborreli "pborreli (2 commits)")[![ihabunek](https://avatars.githubusercontent.com/u/482138?v=4)](https://github.com/ihabunek "ihabunek (2 commits)")

---

Tags

ftpfilesystems3awscloudsftpfilesstorageWebDAVremotedropboxrackspacecopy.comCloud Filesfile systems

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/rossriley-flysystem53/health.svg)

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

###  Alternatives

[league/flysystem

File storage abstraction for PHP

13.6k639.1M2.2k](/packages/league-flysystem)[creocoder/yii2-flysystem

The flysystem extension for the Yii framework

2931.7M62](/packages/creocoder-yii2-flysystem)[innoge/laravel-rclone

A sleek PHP wrapper around rclone with Laravel-style fluent API syntax

174.1k](/packages/innoge-laravel-rclone)

PHPackages © 2026

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