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 3w 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 31% 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

4448d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/112059?v=4)[Stephen Frank](/maintainers/stephenfrank)[@stephenfrank](https://github.com/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

[easycorp/easyadmin-bundle

Admin generator for Symfony applications

4.3k17.9M388](/packages/easycorp-easyadmin-bundle)[symfony/framework-bundle

Provides a tight integration between Symfony components and the Symfony full-stack framework

3.6k251.7M11.6k](/packages/symfony-framework-bundle)[aws/aws-sdk-php

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

6.3k543.5M2.6k](/packages/aws-aws-sdk-php)[drupal/core

Drupal is an open source content management platform powering millions of websites and applications.

21866.0M1.7k](/packages/drupal-core)[pimcore/pimcore

Content &amp; Product Management Framework (CMS/PIM/E-Commerce)

3.8k3.8M508](/packages/pimcore-pimcore)[simplesamlphp/simplesamlphp

A PHP implementation of a SAML 2.0 service provider and identity provider.

1.1k13.0M218](/packages/simplesamlphp-simplesamlphp)

PHPackages © 2026

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