vormkracht10/flysystem-uploadcare

Flysystem driver for Uploadcare for Laravel.
38,147 18
Install
composer require vormkracht10/flysystem-uploadcare
Latest Version:v0.6.0
PHP:^8.2
License:MIT
Last Updated:Jun 30, 2026
Links: GitHub  ·  Packagist
Maintainer: ux

Laravel Uploadcare integration Filesystem (Flysystem adapter)

Latest Version on Packagist GitHub Tests Action Status GitHub Code Style Action Status Total Downloads

Flysystem adapter for Uploadcare with support for Laravel v9+ including Laravel 13.

Installation

You can install the package via composer:

composer require vormkracht10/flysystem-uploadcare

Add the following config to the disk array in config/filesystems.php

[
    'uploadcare' => [
        'driver' => 'uploadcare',
        'public' => env('UPLOADCARE_PUBLIC_KEY'),
        'secret' => env('UPLOADCARE_SECRET_KEY'),
        'cdn' => env('UPLOADCARE_CDN') // Default https://ucarecdn.com
    ]
]

Then set the FILESYSTEM_DISK to uploadcare and set your public/secret keys in your .env

UPLOADCARE_PUBLIC_KEY=
UPLOADCARE_SECRET_KEY=
FILESYSTEM_DISK=uploadcare

Examples

Please note: Since adding files to uploadcare always returns a unique id that will be used to retrieve files you might wanna use the *GetUuid() function(s) for writing files.

$uuid = Storage::disk('uploadcare')->putGetUuid('example.txt', 'My notes.');

$uuid = Storage::disk('uploadcare')->putFileGetUuid('files', new File('/var/www/uploadcare-app/routes/newcontent.txt'));

$uuid = Storage::disk('uploadcare')->putFileAsGetUuid('files', new File('/var/www/uploadcare-app/routes/newcontent.txt'), 'my-awesome-name.txt');

Get the content of a file

$contents = Storage::disk('uploadcare')->get('<uuid>');

Deleting a file:

Storage::disk('uploadcare')->delete('<uuid>');

Getting the mimetype of a file

$mimeType = Storage::disk('uploadcare')->mimeType('<uuid>');

Get the filesize of a file

$bytes = Storage::disk('uploadcare')->filesize('<uuid>');

Get the original filename

$info = Storage::disk('uploadcare')->fileInfo($result[0]);
$filename = $info->extraMetadata()['originalFilename'];

Get a list of files

Directories in uploadcare are stored with an "~"-sign at the end of a uuid. Getting files from a directory could be retreived as follow:

$files = Storage::disk('uploadcare')->files('0123a456-a0bc-0a1b-0ab1-0a1234a5b6c7~');
foreach ($files as $uuid) {
    echo 'https://ucarecdn.com/' . $uuid .'<br />';
}

Working with images? See github.com/vormkracht10/php-uploadcare-transformations

Testing

composer test

Changelog

Please see CHANGELOG for more information on what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security Vulnerabilities

Please review our security policy on how to report security vulnerabilities.

Credits

License

The MIT License (MIT). Please see License File for more information.

Related Packages

itbdw/laravel-storage-qiniu

A storage library for laravel5 and qiniu sdk

15,430 70
unisharp/laravel-fileapi

Laravel File API - Handle Files with Laravel Storage

45,861 52
zgldh/qiniu-laravel-storage

Qiniu Resource (Cloud) Storage SDK for Laravel 5/6/7/8/9

399,766 515
benjamincrozat/laravel-dropbox-driver

Dropbox driver for Laravel.

297,255 53
unisharp/laravel-settings

Persistent settings manager for laravel, translations are supported.

175,107 106