PHPackages                             meisam-mulla/flysystem-stretchfs - 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. meisam-mulla/flysystem-stretchfs

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

meisam-mulla/flysystem-stretchfs
================================

A Flysystem adapter for StretchFS.

v1.4.1(2y ago)197PHPPHP ^8.0

Since Apr 7Pushed 2y ago2 watchersCompare

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

READMEChangelog (10)Dependencies (2)Versions (13)Used By (0)

Flysystem Adapter for StretchFS
===============================

[](#flysystem-adapter-for-stretchfs)

This package provides a [League\\Flysystem](https://flysystem.thephpleague.com/) adapter for [StretchFS](https://github.com/nullivex/stretchfs-sdk). It allows you to use the Flysystem API to interact with your StretchFS storage system, leveraging the features and ease of use of Flysystem for file operations within StretchFS.

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

[](#installation)

You can install the package via composer:

```
composer require meisam-mulla/flysystem-stretchfs
```

Configuration
-------------

[](#configuration)

After installation, you can configure the adapter in your Laravel application or in any PHP project that uses Flysystem. Here's how you can do it:

### Laravel

[](#laravel)

In your config/filesystems.php, add a new disk:

```
'disks' => [
    // Other disks...

    'stretchfs' => [
        'driver' => 'stretchfs',
        'domain' => 'your_sfsserver.net',
        'token' => 'your_token',
    ],
],
```

### Plain PHP

[](#plain-php)

If you're using Flysystem in a non-Laravel PHP project, you can directly instantiate the StretchFsAdapter:

```
use League\Flysystem\Filesystem;
use MeisamMulla\SfsClient\StretchFS;
use MeisamMulla\FlysystemStretchfs\StretchFsAdapter;

$client = new StretchFS([
    'domain' => 'sfsserver.net',
    'token' => 'your_token',
]);

$adapter = new StretchFsAdapter($client);
$filesystem = new Filesystem($adapter);
```

###  Health Score

25

—

LowBetter than 37% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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 ~0 days

Total

12

Last Release

763d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/cbc74747d67ea401016b4308dabc2eb0069f03dbd9e11e2f57e7db4781109928?d=identicon)[meisam-mulla](/maintainers/meisam-mulla)

---

Top Contributors

[![MeisamMulla](https://avatars.githubusercontent.com/u/1777638?v=4)](https://github.com/MeisamMulla "MeisamMulla (19 commits)")

### Embed Badge

![Health badge](/badges/meisam-mulla-flysystem-stretchfs/health.svg)

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

###  Alternatives

[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M790](/packages/league-flysystem-aws-s3-v3)[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.3M74](/packages/unisharp-laravel-filemanager)[league/flysystem-local

Local filesystem adapter for Flysystem.

226231.8M39](/packages/league-flysystem-local)[league/flysystem-bundle

Symfony bundle integrating Flysystem into Symfony applications

40029.5M87](/packages/league-flysystem-bundle)[league/flysystem-sftp-v3

SFTP filesystem adapter for Flysystem.

6129.6M91](/packages/league-flysystem-sftp-v3)[league/flysystem-memory

In-memory filesystem adapter for Flysystem.

8533.6M194](/packages/league-flysystem-memory)

PHPackages © 2026

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