PHPackages                             ilhamarrouf/slim-filesystem - 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. ilhamarrouf/slim-filesystem

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

ilhamarrouf/slim-filesystem
===========================

Slim Framework FileSystem abstraction layer library

0.1.0(6y ago)5429[4 issues](https://github.com/ilhamarrouf/slim-filesystem/issues)MITPHPPHP &gt;=7.2

Since Sep 12Pushed 6y ago2 watchersCompare

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

READMEChangelog (1)Dependencies (4)Versions (3)Used By (0)

Slim Filesystem
===============

[](#slim-filesystem)

A simple filesystem for PHP slim framework like [Laravel Storage](https://laravel.com/docs/6.x/filesystem).

Getting Started
---------------

[](#getting-started)

Slim Filesystem can be installed with Composer.

### With Composer

[](#with-composer)

If you're already using Composer, just add `ilhamarrouf/slim-filesystem` to your `composer.json` file. Slim Filesystem works with Composer's autoloader out of the bat.

```
{
	"require": {
		"ilhamarrouf/slim-filesystem": "0.1.0"
	}
}
```

Or

`composer require ilhamarrouf/slim-filesystem`

### Usage

[](#usage)

Basic example usage package on Slim 3.x

```
$settings = [
    'settings' => [
        'filesystem' => [
            'default' => 'cloud',
            'cloud' => 'minio',
            'disks' => [
                'public' => [
                    'driver' => 'local',
                    'root' => __DIR__.'/storage/',
                    'url' => $_SERVER['HTTP_HOST'].'/storage',
                    'visibility' => 'public',
                ],
                's3' => [
                    'driver' => 's3',
                    'key' => 'superkey',
                    'secret' => 'supersecret',
                    'region' => 'us-east-1',
                    'bucket' => 'test',
                    'url' => 'http://host-to-aws-s3',
                ],
                'minio' => [
                    'driver' => 's3',
                    'endpoint' => '127.0.0.1:9000',
                    'use_path_style_endpoint' => true,
                    'key' => 'superpersonalket',
                    'secret' => 'superpersonalsecret',
                    'region' => 'us-east-1',
                    'bucket' => 'tms',
                ],
            ]
        ],
    ],
];

$app = new \Slim\App($settings);

$container = $app->getContainer();

$container['storage'] = function ($container) {
    return new \Ilhamarrouf\Filesystem\FilesystemManager($container);
};
```

###  Health Score

21

—

LowBetter than 19% of packages

Maintenance4

Infrequent updates — may be unmaintained

Popularity17

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity44

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

Unknown

Total

1

Last Release

2430d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/29f58955738185682e2e549b7c3f4548b17fd2d184af8f280891441d7f5bb3c3?d=identicon)[ilhamarrouf](/maintainers/ilhamarrouf)

---

Top Contributors

[![ilhamarrouf](https://avatars.githubusercontent.com/u/8977253?v=4)](https://github.com/ilhamarrouf "ilhamarrouf (8 commits)")

---

Tags

aws-s3filesystemobject-storagephpslim-framework

### Embed Badge

![Health badge](/badges/ilhamarrouf-slim-filesystem/health.svg)

```
[![Health](https://phpackages.com/badges/ilhamarrouf-slim-filesystem/health.svg)](https://phpackages.com/packages/ilhamarrouf-slim-filesystem)
```

###  Alternatives

[unisharp/laravel-filemanager

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

2.2k3.3M73](/packages/unisharp-laravel-filemanager)[league/flysystem-aws-s3-v3

AWS S3 filesystem adapter for Flysystem.

1.6k263.6M782](/packages/league-flysystem-aws-s3-v3)[aws/aws-sdk-php-laravel

A simple Laravel 9/10/11/12/13 service provider for including the AWS SDK for PHP.

1.7k35.6M74](/packages/aws-aws-sdk-php-laravel)[laravel/vapor-cli

The Laravel Vapor CLI

31310.7M8](/packages/laravel-vapor-cli)[dgtlss/capsule

A Laravel package for backing up databases and files to external sources with notifications

194.3k](/packages/dgtlss-capsule)[yoelpc4/laravel-cloudinary

Laravel Cloudinary filesystem cloud driver.

3343.0k](/packages/yoelpc4-laravel-cloudinary)

PHPackages © 2026

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