PHPackages                             flow/plupload-endpoint - 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. flow/plupload-endpoint

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

flow/plupload-endpoint
======================

Handles Plupload uploads

0.1.0(12y ago)018MITPHP

Since Apr 28Pushed 12y ago2 watchersCompare

[ Source](https://github.com/FlowCommunications/PluploadEndpoint)[ Packagist](https://packagist.org/packages/flow/plupload-endpoint)[ RSS](/packages/flow-plupload-endpoint/feed)WikiDiscussions master Synced 6d ago

READMEChangelogDependencies (2)Versions (2)Used By (0)

Plupload Endpoint [![Build Status](https://camo.githubusercontent.com/a583c6f3f21c52ba59a5dc6257eab110b86a2e31a64627249657dfa72e515ffa/68747470733a2f2f7472617669732d63692e6f72672f466c6f77436f6d6d756e69636174696f6e732f506c75706c6f6164456e64706f696e742e7376673f6272616e63683d6d6173746572)](https://travis-ci.org/FlowCommunications/PluploadEndpoint)
==========================================================================================================================================================================================================================================================================================================================================================

[](#plupload-endpoint-)

An endpoint handler for the Plupload uploader.

External dependencies
---------------------

[](#external-dependencies)

- `Symfony\Component\HttpFoundation`
- `Symfony\Component\Filesystem`

Install
-------

[](#install)

```
composer require flow/plupload-endpoint:0.1.x

```

Usage
-----

[](#usage)

### Framework agnostic request/response

[](#framework-agnostic-requestresponse)

```
use Flow\PluploadEndpoint\JsonResponseHandler;
use Flow\PluploadEndpoint\Pluploader;
use Symfony\Component\Filesystem\Filesystem;
use Symfony\Component\HttpFoundation\Request;

$request = Request::createFromGlobals();

$filesystem = new Filesystem();

$pluploader = new Pluploader($request, $filesystem, './uploads');

$handler = new JsonResponseHandler($pluploader);

$response = $handler->handle(); // returns Symfony\Component\HttpFoundation\Response

$response->send(); // Sends JSON to browser
```

### Laravel integration

[](#laravel-integration)

```
class Uploads extends Controller
{
	public function upload()
	{
        $pluploader = new Pluploader(
            App::make('request'),
            new \Symfony\Component\Filesystem\Filesystem(),
            '../app/storage/uploads'
        );

		$handler = new JsonResponseHandler($pluploader);

		return $handler->handle();
	}
}
```

Caveats
=======

[](#caveats)

- Not tested for Windows/IIS environments
- This package has no security features however here are a few tips:
    - Check the file extensions of uploaded files and exclude all extensions you're not expecting (ie. \*.php files)
    - Don't put the uploaded files in a publicly accessible directory (ie. in the public\_html folder)
    - Obfuscate the file name on upload

###  Health Score

24

—

LowBetter than 32% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity53

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% 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

Unknown

Total

1

Last Release

4402d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/82c5de45afd4f3157345b31b87f2953732fd094c7a002f2e968285724d35809c?d=identicon)[stephenfrank](/maintainers/stephenfrank)

---

Top Contributors

[![stephenfrank](https://avatars.githubusercontent.com/u/112059?v=4)](https://github.com/stephenfrank "stephenfrank (6 commits)")

### Embed Badge

![Health badge](/badges/flow-plupload-endpoint/health.svg)

```
[![Health](https://phpackages.com/badges/flow-plupload-endpoint/health.svg)](https://phpackages.com/packages/flow-plupload-endpoint)
```

###  Alternatives

[aws/aws-sdk-php

AWS SDK for PHP - Use Amazon Web Services in your PHP project

6.3k511.3M2.2k](/packages/aws-aws-sdk-php)[vich/uploader-bundle

Ease file uploads attached to entities

1.9k25.9M116](/packages/vich-uploader-bundle)[sonata-project/media-bundle

Symfony SonataMediaBundle

4625.5M71](/packages/sonata-project-media-bundle)[guillermomartinez/filemanager-php

Filemanager for php, it is the connector to the File Manager, regardless of the GUI.

242.7k](/packages/guillermomartinez-filemanager-php)

PHPackages © 2026

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