PHPackages                             survos/storage-bundle - 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. survos/storage-bundle

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

survos/storage-bundle
=====================

Symfony bundle for interacting with storage (via Flysystem)

2.10.25(1w ago)0547↓64.3%MITPHPPHP ^8.5CI failing

Since Mar 11Pushed 1w agoCompare

[ Source](https://github.com/survos/storage-bundle)[ Packagist](https://packagist.org/packages/survos/storage-bundle)[ GitHub Sponsors](https://github.com/kbond)[ RSS](/packages/survos-storage-bundle/feed)WikiDiscussions main Synced 3d ago

READMEChangelog (2)Dependencies (227)Versions (389)Used By (0)

StorageBundle
=============

[](#storagebundle)

A Symfony bundle to interact with storage (via Flysystem). It exposes commands, controllers and twig utilities. All of the underlying storage happens through Flysystem.

Quickstart
----------

[](#quickstart)

```
symfony new storage-demo --webapp && cd storage-demo
composer require survos/storage-bundle
```

Optional thumbnail support:

```
composer require survos/imgproxy-bundle
```

Without imgproxy, the bundle still works normally and falls back to direct object links instead of generated image thumbnails/previews.

Configure Flysystem, including the relevant env vars if using something besides local

```
# config/packages/flysystem.yaml
# Read the documentation at https://github.com/thephpleague/flysystem-bundle/blob/master/docs/1-getting-started.md
flysystem:
    storages:
        default.storage:
            adapter: 'aws'
            # visibility: public # Make the uploaded file publicly accessible in S3
            options:
                client: 'Aws\S3\S3Client' # The service ID of the Aws\S3\S3Client instance
                bucket: '%env(AWS_S3_BUCKET_NAME)%'
                streamReads: true
                prefix: '%env(S3_STORAGE_PREFIX)%'
when@dev:
    flysystem:
        storages:
            default.storage:
                adapter: 'local'
                options:
                    directory: '%kernel.project_dir%/public/storage'
```

```
symfony new storage-demo --webapp && cd storage-demo
composer require survos/storage-bundle
bin/console storage:config
bin/console storage:list
```

You can browse interactively with the basic admin controller.

```
composer require survos/simple-datatables-bundle
symfony server:start -d
symfony open:local --path=/storage/zones
```

Storage zones (and their credentials) are configured in `flysystem.yaml` as shown above — local during dev, S3/Bunny/etc. in production via env vars.

To see what got wired at runtime, run the read-only diagnostic:

```
bin/console storage:config
```

It dumps the resolved zones and their adapters (class, root/bucket), which is handy for confirming env vars resolved correctly. It makes no changes and needs no credentials.

> Legacy note: earlier versions shipped a Bunny-specific `storage:config ` that fetched per-zone keys from the Bunny dashboard. The bundle is now backend-agnostic (Flysystem), so that key-fetcher is gone; `storage:config` is purely diagnostic.

Your application now has a bare-bones controller located at /admin/storage, you may want to secure this route in security.yaml, or configure it in config/routes/survos\_storage.yaml.

You also have access to a command line interface.

```
bin/console storage:list
```

```
+------------- museado/ -----+--------+
| ObjectName     | Path      | Length |
+----------------+-----------+--------+
| photos finales | /museado/ | 0      |
+----------------+-----------+--------+

```

###  Health Score

52

—

FairBetter than 96% of packages

Maintenance98

Actively maintained with recent releases

Popularity18

Limited adoption so far

Community6

Small or concentrated contributor base

Maturity71

Established project with proven stability

 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 ~1 days

Total

388

Last Release

10d ago

Major Versions

1.6.28 → 2.0.162025-09-28

PHP version history (3 changes)1.5.418PHP ^8.3

1.5.600PHP ^8.4

2.8.1PHP ^8.5

### Community

Maintainers

![](https://www.gravatar.com/avatar/21b39551f92ed4143772c622f9e571589c5a72c96ab3c53fe67489ce0d83e806?d=identicon)[tacman1123](/maintainers/tacman1123)

---

Top Contributors

[![tacman](https://avatars.githubusercontent.com/u/619585?v=4)](https://github.com/tacman "tacman (18 commits)")

---

Tags

symfonysymfony-ux

###  Code Quality

TestsPHPUnit

Static AnalysisPHPStan

Type Coverage Yes

### Embed Badge

![Health badge](/badges/survos-storage-bundle/health.svg)

```
[![Health](https://phpackages.com/badges/survos-storage-bundle/health.svg)](https://phpackages.com/packages/survos-storage-bundle)
```

###  Alternatives

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[open-dxp/opendxp

Content &amp; Product Management Framework (CMS/PIM)

9421.6k61](/packages/open-dxp-opendxp)

PHPackages © 2026

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