PHPackages                             nedmas/laravel-fortrabbit-storage - 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. nedmas/laravel-fortrabbit-storage

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

nedmas/laravel-fortrabbit-storage
=================================

This Laravel package provides a storage driver for the Fortrabbit Object Storage.

26[1 issues](https://github.com/nedmas/laravel-fortrabbit-storage/issues)PHP

Since Oct 6Pushed 9y ago1 watchersCompare

[ Source](https://github.com/nedmas/laravel-fortrabbit-storage)[ Packagist](https://packagist.org/packages/nedmas/laravel-fortrabbit-storage)[ RSS](/packages/nedmas-laravel-fortrabbit-storage/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependenciesVersions (1)Used By (0)

Laravel driver for Fortrabbit Object Storage
============================================

[](#laravel-driver-for-fortrabbit-object-storage)

[![Latest Version on Packagist](https://camo.githubusercontent.com/c24cec866821f7458ddca83dcac82d5edde9583b7c4ff33b911599232f60442a/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f762f6e65646d61732f6c61726176656c2d666f72747261626269742d73746f726167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/nedmas/laravel-fortrabbit-storage)[![Software License](https://camo.githubusercontent.com/55c0218c8f8009f06ad4ddae837ddd05301481fcf0dff8e0ed9dadda8780713e/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f6c6963656e73652d4d49542d627269676874677265656e2e7376673f7374796c653d666c61742d737175617265)](LICENSE.md)[![Build Status](https://camo.githubusercontent.com/17571c8cfd9c23011da4d62e59010b084f04bf3f811842eba9905226f00a1e80/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f6e65646d61732f6c61726176656c2d666f72747261626269742d73746f726167652f6d61737465722e7376673f7374796c653d666c61742d737175617265)](https://travis-ci.org/nedmas/laravel-fortrabbit-storage)[![Coverage Status](https://camo.githubusercontent.com/769c9502fead07710a89347e42897aff45c85cb3945c6da56843144ea53b3790/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f636f7665726167652f672f6e65646d61732f6c61726176656c2d666f72747261626269742d73746f726167652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/nedmas/laravel-fortrabbit-storage/code-structure)[![Quality Score](https://camo.githubusercontent.com/6eddb03bda3ceb0dd90a4423cef2328df4878bc0a4f87da9341f1a6d9c0ed306/68747470733a2f2f696d672e736869656c64732e696f2f7363727574696e697a65722f672f6e65646d61732f6c61726176656c2d666f72747261626269742d73746f726167652e7376673f7374796c653d666c61742d737175617265)](https://scrutinizer-ci.com/g/nedmas/laravel-fortrabbit-storage)[![Total Downloads](https://camo.githubusercontent.com/87121ad2bf4bbba4ad122ee4926c51e1e0fe5e3ec37a9fd6c6b3b81e5f86db0b/68747470733a2f2f696d672e736869656c64732e696f2f7061636b61676973742f64742f6e65646d61732f6c61726176656c2d666f72747261626269742d73746f726167652e7376673f7374796c653d666c61742d737175617265)](https://packagist.org/packages/nedmas/laravel-fortrabbit-storage)

This Laravel package provides a storage driver for the Fortrabbit Object Storage.

Install
-------

[](#install)

Via Composer

```
$ composer require nedmas/laravel-fortrabbit-storage
```

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

[](#configuration)

First follow the install guide from Fortrabbit for configuring the [Object Storage](https://help.fortrabbit.com/install-laravel-5#toc-object-storage).

Then rename the disk from `s3` to `fortrabbit` and replace the `s3` driver with `fortrabbit`. Finally you need to add an additional config key for `host` which retrieves the value from the app secrets array.

```
'fortrabbit' => [
    'driver'   => 'fortrabbit',
    'key'      => $secrets['OBJECT_STORAGE']['KEY'],
    'secret'   => $secrets['OBJECT_STORAGE']['SECRET'],
    'bucket'   => $secrets['OBJECT_STORAGE']['BUCKET'],
    'endpoint' => 'https://'. $secrets['OBJECT_STORAGE']['SERVER'],
    'region'   => $secrets['OBJECT_STORAGE']['REGION'],
    'host'     => $secrets['OBJECT_STORAGE']['HOST']
],
```

Usage
-----

[](#usage)

```
Storage::disk('fortrabbit')->put('file.txt', 'Contents');
```

Change log
----------

[](#change-log)

Please see [CHANGELOG](CHANGELOG.md) for more information what has changed recently.

Testing
-------

[](#testing)

```
$ composer test
```

Contributing
------------

[](#contributing)

Please see [CONTRIBUTING](CONTRIBUTING.md) for details.

Security
--------

[](#security)

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

Credits
-------

[](#credits)

- [Tom Densham](https://github.com/nedmas)
- [All Contributors](../../contributors)

License
-------

[](#license)

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

###  Health Score

18

—

LowBetter than 7% of packages

Maintenance10

Infrequent updates — may be unmaintained

Popularity7

Limited adoption so far

Community7

Small or concentrated contributor base

Maturity41

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.

### Community

Maintainers

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

---

Top Contributors

[![nedmas](https://avatars.githubusercontent.com/u/842280?v=4)](https://github.com/nedmas "nedmas (10 commits)")

---

Tags

fortrabbitlaravel

### Embed Badge

![Health badge](/badges/nedmas-laravel-fortrabbit-storage/health.svg)

```
[![Health](https://phpackages.com/badges/nedmas-laravel-fortrabbit-storage/health.svg)](https://phpackages.com/packages/nedmas-laravel-fortrabbit-storage)
```

###  Alternatives

[dmhendricks/file-icon-vectors

A collection of file type icons in SVG format.

37880.0k11](/packages/dmhendricks-file-icon-vectors)[barracudanetworks/archivestream-php

A library for dynamically streaming dynamic tar or zip files without the need to have the complete file stored on the server.

77196.8k1](/packages/barracudanetworks-archivestream-php)

PHPackages © 2026

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