PHPackages                             ianrothmann/laravel-rocket-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. ianrothmann/laravel-rocket-upload

ActiveLibrary

ianrothmann/laravel-rocket-upload
=================================

Back-end handler for file uploads. Designed to complement the Rocket Vue App Framework Multiple File Upload.

0.8.1(6y ago)16.2kApache-2.0PHPPHP &gt;=5.4.0

Since Jul 28Pushed 6y ago1 watchersCompare

[ Source](https://github.com/ianrothmann/LaravelRocketUpload)[ Packagist](https://packagist.org/packages/ianrothmann/laravel-rocket-upload)[ RSS](/packages/ianrothmann-laravel-rocket-upload/feed)WikiDiscussions master Synced 1mo ago

READMEChangelog (10)Dependencies (2)Versions (12)Used By (0)

LaravelRocketUpload
===================

[](#laravelrocketupload)

A Laravel 5 handler for file uploads with the Rocket Upload Vue component.

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

[](#installation)

`composer require ianrothmann/laravel-rocket-upload`

in `config/app.php`

Service Provider ` IanRothmann\LaravelRocketUpload\ServiceProviders\RocketUploadServiceProvider::class`

Facade

`'RocketUpload' =>IanRothmann\LaravelRocketUpload\Facades\RocketUpload::class`

Examples
--------

[](#examples)

An example of an Image

```
return RocketUpload::request($request)
                ->disk('s3') //optional
                ->directory('uploadedfiles')
                ->thumbnail($w,$h,$fit) //$fit=true by default, if false it will resize the picture and not cut off
                ->maxDimensions($w,$h)
                ->processImageWith(function(Image $image){
                     //Intervention Image Object
                     //Do something here
                     return $image;
                  })
                  ->afterUpload(function(File $file){
                     //Do something with file model here
                  })
                ->handle();
```

An example of a file.

```
return RocketUpload::request($request)
                ->disk('s3') //optional
                ->directory('uploadedfiles')
                ->processWith(function($file_contents){
                     //Do something here
                     return $file_contents;
                  })
                ->handle();
```

Be careful with -&gt;processWith(), it loads the entire file into memory.

###  Health Score

30

—

LowBetter than 64% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity55

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 71.4% 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 ~72 days

Recently: every ~154 days

Total

11

Last Release

2488d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/4319223?v=4)[Ian Rothmann](/maintainers/ianrothmann)[@ianrothmann](https://github.com/ianrothmann)

---

Top Contributors

[![ianrothmann1](https://avatars.githubusercontent.com/u/16775754?v=4)](https://github.com/ianrothmann1 "ianrothmann1 (15 commits)")[![ianrothmann](https://avatars.githubusercontent.com/u/4319223?v=4)](https://github.com/ianrothmann "ianrothmann (6 commits)")

### Embed Badge

![Health badge](/badges/ianrothmann-laravel-rocket-upload/health.svg)

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

###  Alternatives

[bagisto/bagisto

Bagisto Laravel E-Commerce

26.2k161.6k7](/packages/bagisto-bagisto)[unopim/unopim

UnoPim Laravel PIM

9.4k1.8k](/packages/unopim-unopim)[code16/sharp

Laravel Content Management Framework

78959.5k4](/packages/code16-sharp)[kompo/kompo

Laravel &amp; Vue.js FullStack Components for Rapid Application Development

11812.4k21](/packages/kompo-kompo)[eveseat/web

SeAT Web Interface

2723.2k135](/packages/eveseat-web)

PHPackages © 2026

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