PHPackages                             juzaweb/laravel-chunk-upload - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [File &amp; Storage](/categories/file-storage)
4. /
5. juzaweb/laravel-chunk-upload

ActiveLibrary[File &amp; Storage](/categories/file-storage)

juzaweb/laravel-chunk-upload
============================

Service for chunked upload with several js providers

v1.5(4y ago)1592.9k2MITPHP

Since Jun 27Pushed 4y agoCompare

[ Source](https://github.com/juzaweb/laravel-chunk-upload)[ Packagist](https://packagist.org/packages/juzaweb/laravel-chunk-upload)[ RSS](/packages/juzaweb-laravel-chunk-upload/feed)WikiDiscussions master Synced 3w ago

READMEChangelog (3)Dependencies (9)Versions (39)Used By (2)

Laravel Chunk Upload
====================

[](#laravel-chunk-upload)

[![Total Downloads](https://camo.githubusercontent.com/471976434d8e85d81f07f52c0a26bd86a721b49ada97d3d4e2ec6373d8d5c323/68747470733a2f2f706f7365722e707567782e6f72672f70696f6e2f6c61726176656c2d6368756e6b2d75706c6f61642f646f776e6c6f6164733f666f726d61743d666c6174)](https://packagist.org/packages/pion/laravel-chunk-upload)[![Build Status](https://camo.githubusercontent.com/26916254805113dff637469d58f54235a74a97c9062516eec5337eaae4bd54e8/68747470733a2f2f7472617669732d63692e6f72672f70696f6e6c2f6c61726176656c2d6368756e6b2d75706c6f61642e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/pionl/laravel-chunk-upload)[![Latest Stable Version](https://camo.githubusercontent.com/ac0d6ba28066052f1ebe536b6845679f30066bfd677d2330892b905dc233aa8c/68747470733a2f2f706f7365722e707567782e6f72672f70696f6e2f6c61726176656c2d6368756e6b2d75706c6f61642f762f737461626c653f666f726d61743d666c6174)](https://packagist.org/packages/pion/laravel-chunk-upload)[![Latest Unstable Version](https://camo.githubusercontent.com/3d508888ef0019e456686e6babd8ad9aa38000326fa0b39f08a896e61f462962/68747470733a2f2f706f7365722e707567782e6f72672f70696f6e2f6c61726176656c2d6368756e6b2d75706c6f61642f762f756e737461626c653f666f726d61743d666c6174)](https://packagist.org/packages/pion/laravel-chunk-upload)[![License](https://camo.githubusercontent.com/4a059141927156629435b4fceb9959b3e499bb4e506db776bc4ddff6617a112a/68747470733a2f2f706f7365722e707567782e6f72672f70696f6e2f6c61726176656c2d6368756e6b2d75706c6f61642f6c6963656e7365)](https://packagist.org/packages/pion/laravel-chunk-upload)

Introduction
------------

[](#introduction)

> Supports Laravel from 5.2 to 7 (covered by integration tests on all versions).

Easy to use service/library for chunked upload with supporting multiple JS libraries on top of Laravel's file upload with low memory footprint in mind.

Supports feature as [cross domains requests](https://github.com/pionl/laravel-chunk-upload/wiki/cross-domain-requests), automatic clean schedule and easy usage.

Example repository with **integration tests** can be found in [laravel-chunk-upload-example](https://github.com/pionl/laravel-chunk-upload-example).

> Before adding pull requests read CONTRIBUTION.md. Help me fix your bugs by debugging your issues using XDEBUG (and try to do a fix - it will help you become better).

Installation
------------

[](#installation)

**1. Install via composer**

```
composer require pion/laravel-chunk-upload

```

**2. Publish the config (Optional)**

```
php artisan vendor:publish --provider="Pion\Laravel\ChunkUpload\Providers\ChunkUploadServiceProvider"

```

Usage
-----

[](#usage)

Setup consists of 3 steps:

1. Integrate your controller that will handle the file upload. [How to](https://github.com/pionl/laravel-chunk-upload/wiki/controller)
2. Set a route for the controller. [How to](https://github.com/pionl/laravel-chunk-upload/wiki/routing)
3. Choose your front-end provider below (we support multiple providers in single controller)

LibraryWikisingle &amp; chunk uploadsimultaneous uploadsIn [example project](https://github.com/pionl/laravel-chunk-upload-example)Author[resumable.js](https://github.com/23/resumable.js)[Wiki](https://github.com/pionl/laravel-chunk-upload/wiki/resumable-js)✔️✔️✔️[@pionl](https://github.com/pionl)[DropZone](https://gitlab.com/meno/dropzone/)[Wiki](https://github.com/pionl/laravel-chunk-upload/wiki/dropzone)✔️✔️✔️[@pionl](https://github.com/pionl)[jQuery-File-Upload](https://github.com/blueimp/jQuery-File-Upload)[Wiki](https://github.com/pionl/laravel-chunk-upload/wiki/jquery-file-upload)✔️✖️✔️[@pionl](https://github.com/pionl)[Plupload](https://github.com/moxiecode/plupload)[Wiki](https://github.com/pionl/laravel-chunk-upload/wiki/plupload)✔️✖️✖️[@pionl](https://github.com/pionl)[simple uploader](https://github.com/simple-uploader)✖️✔️✖️✖️[@dyktek](https://github.com/dyktek)[ng-file-upload](https://github.com/danialfarid/ng-file-upload)[Wiki](https://github.com/pionl/laravel-chunk-upload/wiki/ng-file-upload)✔️✖️✖️[@L3o-pold](https://github.com/L3o-pold)**Simultaneous uploads:** The library must send last chunk as last, otherwise the merging will not work correctly.

**Custom disk:** At this moment I recommend using the basic storage setup (not linking public folder). It is not tested (Have free time to ensure it is working? PR the changes!).

For more detailed information (tips) use the [Wiki](https://github.com/pionl/laravel-chunk-upload/wiki) or for working example continue to separate repository with [example](https://github.com/pionl/laravel-chunk-upload-example).

Changelog
---------

[](#changelog)

Can be found in [releases](https://github.com/pionl/laravel-chunk-upload/releases).

Contribution or extending
-------------------------

[](#contribution-or-extending)

> Read contribution before your PR (and use example repository to run integration tests).

See [CONTRIBUTING.md](CONTRIBUTING.md) for how to contribute changes. All contributions are welcome.

Compatibility
-------------

[](#compatibility)

- 7.\* (last tested on v7.16.1)
- 6.\* (last tested on v6.18.20)
- 5.8.\* (last tested on v5.8.38)
- 5.7.\* (last tested on v5.7.29)
- 5.6.\* (last tested on v5.6.40)
- 5.5.\* (last tested on v5.5.49)
- 5.4.\* (last tested on v5.4.36)
- 5.3.\* (last tested on v5.3.31)
- 5.2.\* (last tested on v5.2.45)

Copyright and License
---------------------

[](#copyright-and-license)

[laravel-chunk-upload](https://github.com/pionl/laravel-chunk-upload)was written by [Martin Kluska](http://kluska.cz) and is released under the [MIT License](LICENSE.md).

Copyright (c) 2016 and beyond Martin Kluska

###  Health Score

40

—

FairBetter than 86% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity33

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity75

Established project with proven stability

 Bus Factor1

Top contributor holds 67.3% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~58 days

Recently: every ~158 days

Total

37

Last Release

1560d ago

Major Versions

v0.3.2 → v1.0.02017-02-07

### Community

Maintainers

![](https://www.gravatar.com/avatar/3169e8a8781068840e9300a57785089da521287dbe0279fc9cc7e8de1c1d95a9?d=identicon)[juzaweb](/maintainers/juzaweb)

---

Top Contributors

[![pionl](https://avatars.githubusercontent.com/u/1878831?v=4)](https://github.com/pionl "pionl (37 commits)")[![juzaweb](https://avatars.githubusercontent.com/u/47020363?v=4)](https://github.com/juzaweb "juzaweb (3 commits)")[![Colbydude](https://avatars.githubusercontent.com/u/575593?v=4)](https://github.com/Colbydude "Colbydude (2 commits)")[![drjdr](https://avatars.githubusercontent.com/u/55947988?v=4)](https://github.com/drjdr "drjdr (1 commits)")[![dyktek](https://avatars.githubusercontent.com/u/10923042?v=4)](https://github.com/dyktek "dyktek (1 commits)")[![HOTAIBI](https://avatars.githubusercontent.com/u/23198813?v=4)](https://github.com/HOTAIBI "HOTAIBI (1 commits)")[![ivandokov](https://avatars.githubusercontent.com/u/2357455?v=4)](https://github.com/ivandokov "ivandokov (1 commits)")[![joni2back](https://avatars.githubusercontent.com/u/2049935?v=4)](https://github.com/joni2back "joni2back (1 commits)")[![L3o-pold](https://avatars.githubusercontent.com/u/4710495?v=4)](https://github.com/L3o-pold "L3o-pold (1 commits)")[![TheFrankman](https://avatars.githubusercontent.com/u/1402017?v=4)](https://github.com/TheFrankman "TheFrankman (1 commits)")[![tomswinkels](https://avatars.githubusercontent.com/u/9036151?v=4)](https://github.com/tomswinkels "tomswinkels (1 commits)")[![torta](https://avatars.githubusercontent.com/u/691621?v=4)](https://github.com/torta "torta (1 commits)")[![agewriter](https://avatars.githubusercontent.com/u/61108703?v=4)](https://github.com/agewriter "agewriter (1 commits)")[![trideout](https://avatars.githubusercontent.com/u/3935944?v=4)](https://github.com/trideout "trideout (1 commits)")[![buschmann23](https://avatars.githubusercontent.com/u/4329915?v=4)](https://github.com/buschmann23 "buschmann23 (1 commits)")[![dgitts](https://avatars.githubusercontent.com/u/4130836?v=4)](https://github.com/dgitts "dgitts (1 commits)")

###  Code Quality

TestsPHPUnit

Code StylePHP CS Fixer

### Embed Badge

![Health badge](/badges/juzaweb-laravel-chunk-upload/health.svg)

```
[![Health](https://phpackages.com/badges/juzaweb-laravel-chunk-upload/health.svg)](https://phpackages.com/packages/juzaweb-laravel-chunk-upload)
```

###  Alternatives

[laravel/ai

The official AI SDK for Laravel.

9782.1M162](/packages/laravel-ai)[spatie/laravel-responsecache

Speed up a Laravel application by caching the entire response

2.8k8.7M64](/packages/spatie-laravel-responsecache)[laravel/mcp

Rapidly build MCP servers for your Laravel applications.

76518.2M120](/packages/laravel-mcp)[spatie/laravel-export

Create a static site bundle from a Laravel app

672139.5k6](/packages/spatie-laravel-export)[aedart/athenaeum

Athenaeum is a mono repository; a collection of various PHP packages

245.2k](/packages/aedart-athenaeum)[pressbooks/pressbooks

Pressbooks is an open source book publishing tool built on a WordPress multisite platform. Pressbooks outputs books in multiple formats, including PDF, EPUB, web, and a variety of XML flavours, using a theming/templating system, driven by CSS.

45344.0k1](/packages/pressbooks-pressbooks)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
