Laravel Packages

Uploadcare Filesystem Adapter for Laravel

Published
Uploadcare Filesystem Adapter for Laravel image

The Uploadcare PHP package is an adapter for Flysystem that makes it easy to use the Uploadcare API in Laravel 10+ apps:

$uuid = Storage::disk('uploadcare')
->putGetUuid('example.txt', 'My notes.');
 
$uuid = Storage::disk('uploadcare')
->putFileGetUuid('files', new File('/path/to/newcontent.txt'));
 
$uuid = Storage::disk('uploadcare')
->putFileAsGetUuid(
'files',
new File('/path/to/newcontent.txt'),
'my-awesome-name.txt'
);

To retrieve and manage files from Uploadcare using Flysystem, you provide the UUID of the resource you want to retrieve:

// Get the content of a file
Storage::disk('uploadcare')->get('<uuid>');
 
// Delete a file
Storage::disk('uploadcare')->delete('<uuid>');

If you're working with images, the package author has a PHP Uploadcare transformations package that provides image manipulation tools:

use Vormkracht10\UploadcareTransformations\UploadcareTransformation;
 
$uuid = '12a3456b-c789-1234-1de2-3cfa83096e25';
$cdnUrl = 'https://example.com/cdn/';
 
$transformation = (new UploadcareTransformation($uuid, $cdnUrl));
 
$url = $transformation->crop(width: 320, height: '50p', offsetX: 'center')->setFill(color: 'ffffff');
 
echo $url;

You can install this package via composer with the following command:

composer require vormkracht10/flysystem-uploadcare

The source code contains complete installation instructions and examples of how you can use the Flysystem API with Uploadcare.


This package was submitted to our Laravel News Links section. Links is a place the community can post packages and tutorials around the Laravel ecosystem. Follow along on Twitter @LaravelLinks

Paul Redmond photo

Staff writer at Laravel News. Full stack web developer and author.

Sponsored

acquaintsoft logo
Acquaint Softtech

Hire Laravel developers with AI expertise at $20/hr. Get started in 48 hours.

Visit Acquaint Softtech

The latest

View all →
CPX: The Composer Package Executor for PHP image

CPX: The Composer Package Executor for PHP

Read article
Laravel AI SDK Adds Human-in-the-Loop Tool Approval image

Laravel AI SDK Adds Human-in-the-Loop Tool Approval

Read article
Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals image

Pest 5 Released With Test Impact Analysis, Agent Verification, and Evals

Read article
Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs image

Queue-SQL: Run Mass Deletes and Updates Across Parallel Queue Jobs

Read article
Blade Formatting in Laravel Pint image

Blade Formatting in Laravel Pint

Read article
Inertia DevTools Is Now on the Chrome Web Store image

Inertia DevTools Is Now on the Chrome Web Store

Read article