A FilePond component for your laravel apps
sawirricardo/laravel-filepond is a Laravel package for a filepond component for your laravel apps.
It currently has 1 GitHub stars and 502 downloads on Packagist (latest version 0.2.0).
Install it with composer require sawirricardo/laravel-filepond.
Discover more Laravel packages by sawirricardo
or browse all Laravel packages to compare alternatives.
Last updated
This is where your description should go. Limit it to a paragraph or two. Consider adding a small example.
We invest a lot of resources into creating best in class open source packages. You can support us by buying one of our paid products.
We highly appreciate you sending us a postcard from your hometown, mentioning which of our package(s) you are using. You'll find our address on our contact page. We publish all received postcards on our virtual postcard wall.
You can install the package via composer:
composer require sawirricardo/laravel-filepond
You can publish the config file with:
php artisan vendor:publish --tag="laravel-filepond-config"
This is the contents of the published config file:
return [
'server_url' => 'laravel-filepond',
'disk' => 'local',
'rules' => ['required', 'file', 'max:12288'], // 12MB
'directory' => 'filepond-tmp',
'chunk_directory' => 'filepond-chunks',
'middleware' => ['web', 'throttle:60,1'],
'preview_mimes' => [
// Supported file types for temporary pre-signed file URLs.
'png', 'gif', 'bmp', 'svg', 'wav', 'mp4',
'mov', 'avi', 'wmv', 'mp3', 'm4a',
'jpg', 'jpeg', 'mpga', 'webp', 'wma',
],
'max_upload_time' => 5, // Max duration (in minutes) before an upload gets invalidated.
];
Just setup your filepond regularly, and the backend will handle automatically for you.
composer test
Please see CHANGELOG for more information on what has changed recently.
Please see CONTRIBUTING for details.
Please review our security policy on how to report security vulnerabilities.
The MIT License (MIT). Please see License File for more information.