fortrabbit/laravel-object-storage

Flysystem adapter for fortrabbit Object Storage
11,255 3
Install
composer require fortrabbit/laravel-object-storage
Latest Version:2.2.0
PHP:^8.0
License:MIT
Last Updated:Apr 11, 2024
Links: GitHub  ·  Packagist
Maintainer: fortrabbit

A flysystem driver for fortrabbit's Object Storage

Install

The most recent version (2.x) is compatible with Laravel 9 and 10

# For laravel 9 and 10
composer require fortrabbit/laravel-object-storage

# For laravel 6,7,8 
composer require fortrabbit/laravel-object-storage:^1.4

Configure the 'object-storage' driver

You are free to choose the disk name. In this example it is s3, but it's up to you.

# config/filesystems.php

// ...
'disks' => [
    's3' => [
        'driver' => 'object-storage'
    ]
],

Environment variables for Object Storage access are available automatically on fortrabbit. For local access you need to set them.

# local .env

OBJECT_STORAGE_KEY="{your-app-name}"
OBJECT_STORAGE_SECRET="{object-storage-secrect}"
OBJECT_STORAGE_REGION="{eu-west-1 or us-west-1} "
OBJECT_STORAGE_BUCKET="{your-app-name}"
OBJECT_STORAGE_SERVER="objects.{region}.frbit.com"
OBJECT_STORAGE_URL="https://{your-app-name}.objects.frb.io"

Related Packages

sykez/laravel-storage-copy

Laravel Artisan command for copying files between Laravel Filesystem/Storage dis...

6,185 7
koffinate/laravel-filesystem

Illuminate filesystem compatibility with Minio Support

3,806 0
jungehaie/laravel-filesystem-google-cloud-storage

A Laravel Flysystem implementation for the Google Cloud Storage via a S3Client.

1,874 2
mubbi/laravel-flysystem-huawei-obs

Laravel Flysystem v3 adapter for Huawei Object Storage Service (OBS) with v2 com...

8,343 4