zing/laravel-flysystem-obs
Flysystem Adapter for OBS
14,247
12
| Install | |
|---|---|
composer require zing/laravel-flysystem-obs |
|
| Latest Version: | 2.8.1 |
| PHP: | ^8.0 |
| License: | MIT |
| Last Updated: | Jun 19, 2026 |
| Links: | GitHub · Packagist |
Maintainer: zingimmick
Laravel Flysystem OBS
OBS storage filesystem for Laravel based on zing/flysystem-obs
Requires
Version Information
| Version | Illuminate | PHP Version | Status |
|---|---|---|---|
| 2.x | 9.x | >= 8.0 | Active support :rocket: |
| 1.x | 6.x - 8.x | >= 7.2 | Active support |
Require Laravel Flysystem OBS using Composer:
composer require zing/laravel-flysystem-obs
Configuration
return [
// ...
'disks' => [
// ...
'obs' => [
'driver' => 'obs',
'root' => '',
'key' => env('OBS_KEY'),
'secret' => env('OBS_SECRET'),
'bucket' => env('OBS_BUCKET'),
'endpoint' => env('OBS_ENDPOINT'),
'is_cname' => env('OBS_IS_CNAME', false),
'security_token' => env('OBS_SECURITY_TOKEN'),
],
]
];
Environment
OBS_KEY=
OBS_SECRET=
OBS_BUCKET=
OBS_ENDPOINT=
OBS_IS_CNAME=false
OBS_SECURITY_TOKEN=
License
Laravel Flysystem OBS is an open-sourced software licensed under the MIT license.
Related Packages
sykez/laravel-storage-copy
Laravel Artisan command for copying files between Laravel Filesystem/Storage dis...
6,185
7
sahablibya/laravel-sharepoint-filesystem
SharePoint/OneDrive filesystem driver for Laravel using Microsoft Graph API
9,944
3
saeedvir/laravel-gist-storage
Laravel Storage driver for GitHub Gist - Store files on GitHub Gist using Larave...
6
0