PHPackages                             dkvhin/laravel-filemanager - 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. dkvhin/laravel-filemanager

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

dkvhin/laravel-filemanager
==========================

A file upload/editor intended for use with Laravel 5 and CKEditor / TinyMCE

3.0.0(7y ago)018MITPHPPHP &gt;=5.4.0

Since Apr 3Pushed 7y ago1 watchersCompare

[ Source](https://github.com/dkvhin/laravel-filemanager)[ Packagist](https://packagist.org/packages/dkvhin/laravel-filemanager)[ RSS](/packages/dkvhin-laravel-filemanager/feed)WikiDiscussions master Synced today

READMEChangelogDependencies (5)Versions (53)Used By (0)

[![](https://camo.githubusercontent.com/1bcccf9fb87db2e6722636986f403087ddb62b753d72dc54998a1d99b39f8656/68747470733a2f2f646b7668696e2e6769746875622e696f2f6c61726176656c2d66696c656d616e616765722f696d616765732f6c6f676f5f747970655f312e706e67)](https://camo.githubusercontent.com/1bcccf9fb87db2e6722636986f403087ddb62b753d72dc54998a1d99b39f8656/68747470733a2f2f646b7668696e2e6769746875622e696f2f6c61726176656c2d66696c656d616e616765722f696d616765732f6c6f676f5f747970655f312e706e67)

[![Travis CI](https://camo.githubusercontent.com/a01460ea3e427e5bfb7f4b88c38f5010a5669117cc63c59cd5001e3db2e77737/68747470733a2f2f696d672e736869656c64732e696f2f7472617669732f556e6953686172702f6c61726176656c2d66696c656d616e616765722e737667)](https://travis-ci.org/UniSharp/laravel-filemanager)[![Total Downloads](https://camo.githubusercontent.com/e7609918169e5ba26ad9c9b6e659f413571949a8cebdc496b9daee0cf4bb8a1e/68747470733a2f2f706f7365722e707567782e6f72672f646b7668696e2f6c61726176656c2d66696c656d616e616765722f646f776e6c6f616473)](https://packagist.org/packages/dkvhin/laravel-filemanager)[![Latest Unstable Version](https://camo.githubusercontent.com/9b5ff446a1f80adf6c39317a0ff3f7f16091a2c67276cf0770aba30b06c66206/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f756e737461626c652d76322e302e302d2d616c706861342d6f72616e67652e737667)](https://packagist.org/packages/dkvhin/laravel-filemanager)[![Latest Stable Version](https://camo.githubusercontent.com/e30ee399dce88adb5394003d5403f9d56e81ad16e4e7499948d9d289cda355a2/68747470733a2f2f706f7365722e707567782e6f72672f646b7668696e2f6c61726176656c2d66696c656d616e616765722f762f737461626c65)](https://packagist.org/packages/dkvhin/laravel-filemanager)[![License](https://camo.githubusercontent.com/a084ae84ed28d8be14682941716a07105eec30eb9b06a2d2064ae95af2d6c267/68747470733a2f2f706f7365722e707567782e6f72672f646b7668696e2f6c61726176656c2d66696c656d616e616765722f6c6963656e7365)](https://packagist.org/packages/dkvhin/laravel-filemanager)

- Document : [dkvhin.github.io/laravel-filemanager](http://dkvhin.github.io/laravel-filemanager/)
    - [Installation](http://dkvhin.github.io/laravel-filemanager/installation)
    - [Integration](http://dkvhin.github.io/laravel-filemanager/integration)
    - [Config](http://dkvhin.github.io/laravel-filemanager/config)
    - [Customization](http://dkvhin.github.io/laravel-filemanager/customization)
    - [Events](http://dkvhin.github.io/laravel-filemanager/events)
    - [Upgrade](http://dkvhin.github.io/laravel-filemanager/upgrade)
- Demo : [Laravel Filemanager container](https://github.com/UniSharp/laravel-filemanager-example-5.3)

Installing alpha version
------------------------

[](#installing-alpha-version)

The alpha version of `v2.0` contains support of cloud storage and fresh new UI with RWD.

- Run `composer require dkvhin/laravel-filemanager:dev-master` to get the latest code.
- Run `composer require dkvhin/laravel-filemanager:v2.0.0-alpha4` to get the latest release of alpha version.

Errors with namespace
---------------------

[](#errors-with-namespace)

We have changed namespace from `Unisharp` to `UniSharp`, and change the first character of every namespace into capital.

If you are updating this package and encounter any errors like `Class not found`, please remove this package entirely and reinstall again.

v1.8 released
-------------

[](#v18-released)

- Please follow the intructions in [upgrade document](https://dkvhin.github.io/laravel-filemanager/upgrade).
- Important changes :
    - Fix Windows compatibility (utf-8 file names and folder names).
    - New feature : Copy &amp; Crop. Thanks [gwleuverink](https://github.com/gwleuverink).
    - [Config document](https://dkvhin.github.io/laravel-filemanager/config) is refactored.

Security
--------

[](#security)

It is important to note that if you use your own routes **you must protect your routes to Laravel-Filemanager in order to prevent unauthorized uploads to your server**. Fortunately, Laravel makes this very easy.

If, for example, you want to ensure that only logged in users have the ability to access the Laravel-Filemanager, simply wrap the routes in a group, perhaps like this:

```
Route::group(['middleware' => 'auth'], function () {
    Route::get('/laravel-filemanager', '\Dkvhin\LaravelFilemanager\Controllers\LfmController@show');
    Route::post('/laravel-filemanager/upload', '\Dkvhin\LaravelFilemanager\Controllers\UploadController@upload');
    // list all lfm routes here...
});
```

This approach ensures that only authenticated users have access to the Laravel-Filemanager. If you are using Middleware or some other approach to enforce security, modify as needed.

**If you use the laravel-filemanager default route, make sure the `auth` middleware (set in config/lfm.php) is enabled and functional**.

v2.0 progress
-------------

[](#v20-progress)

- (done) Unit test
- (done) Integrate with Laravel Storage
- (done) Multiple selection
- (done) Responsive design
- (done) Config refactoring
- (done) JSON APIs
- (done) Move to folder function
- (done) Applying MIME icon generator
- (done) Refactor floating action buttons
- (done) Configurable disk of storage
- (done) Bootstrap 4 support
- (done) Remove bootbox
- Documents for v2.0

Contributors &amp; Credits
--------------------------

[](#contributors--credits)

### Developers / Maintainers

[](#developers--maintainers)

- [Stream](https://github.com/g0110280)
- [@gwleuverink](https://github.com/gwleuverink)
- All [@UniSharp](https://github.com/UniSharp) members

### Contributors

[](#contributors)

- [All contibutors](https://github.com/UniSharp/laravel-filemanager/graphs/contributors) from GitHub. (issues / PR)
- [@taswler](https://github.com/tsawler) the original author of this package.
- Nathan for providing security suggestions.
- [@mdnazmulhasan27771](https://github.com/mdnazmulhasan27771) the designer of our logo. (Licensed CC BY 4.0)

### Credits

[](#credits)

- [@olivervogel](https://github.com/olivervogel) for the awesome [image library](https://github.com/Intervention/image).
- SVG Loaders by [Sam](http://samherbert.net/svg-loaders/) (Licensed MIT)
- Articles and videos which helped promoting this package.
- All users and you.

###  Health Score

31

↑

LowBetter than 68% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity6

Limited adoption so far

Community20

Small or concentrated contributor base

Maturity71

Established project with proven stability

 Bus Factor1

Top contributor holds 60.6% 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 ~26 days

Total

50

Last Release

2773d ago

Major Versions

0.5.3 → 1.0.02015-10-13

v1.8.3 → v2.0.0-alpha2017-12-21

v1.8.4 → v2.0.0-alpha22018-01-09

v1.8.5 → v2.0.0-alpha42018-07-05

v1.x-dev → 3.0.02018-10-07

PHP version history (2 changes)0.1.0PHP &gt;=5.5.0

1.6.0PHP &gt;=5.4.0

### Community

Maintainers

![](https://www.gravatar.com/avatar/4ecdf60c6531a6093808b3ac4d44b551814688498fd9586ed6c8d9e73972122c?d=identicon)[dkvhin](/maintainers/dkvhin)

---

Top Contributors

[![streamtw](https://avatars.githubusercontent.com/u/7333171?v=4)](https://github.com/streamtw "streamtw (587 commits)")[![tsawler](https://avatars.githubusercontent.com/u/441913?v=4)](https://github.com/tsawler "tsawler (168 commits)")[![youchenlee](https://avatars.githubusercontent.com/u/181350?v=4)](https://github.com/youchenlee "youchenlee (78 commits)")[![bluehaha2](https://avatars.githubusercontent.com/u/26923948?v=4)](https://github.com/bluehaha2 "bluehaha2 (24 commits)")[![aminmazrouei](https://avatars.githubusercontent.com/u/253264094?v=4)](https://github.com/aminmazrouei "aminmazrouei (21 commits)")[![storyn26383](https://avatars.githubusercontent.com/u/6954098?v=4)](https://github.com/storyn26383 "storyn26383 (14 commits)")[![dkvhin](https://avatars.githubusercontent.com/u/7764035?v=4)](https://github.com/dkvhin "dkvhin (8 commits)")[![khjay](https://avatars.githubusercontent.com/u/16524332?v=4)](https://github.com/khjay "khjay (6 commits)")[![welcoMattic](https://avatars.githubusercontent.com/u/773875?v=4)](https://github.com/welcoMattic "welcoMattic (6 commits)")[![iankov](https://avatars.githubusercontent.com/u/3382329?v=4)](https://github.com/iankov "iankov (5 commits)")[![atzeteppema](https://avatars.githubusercontent.com/u/16044114?v=4)](https://github.com/atzeteppema "atzeteppema (4 commits)")[![jildertmiedema](https://avatars.githubusercontent.com/u/3383186?v=4)](https://github.com/jildertmiedema "jildertmiedema (4 commits)")[![petyots](https://avatars.githubusercontent.com/u/14016592?v=4)](https://github.com/petyots "petyots (4 commits)")[![Rohos](https://avatars.githubusercontent.com/u/5276140?v=4)](https://github.com/Rohos "Rohos (4 commits)")[![abdulaziz-jm](https://avatars.githubusercontent.com/u/8270545?v=4)](https://github.com/abdulaziz-jm "abdulaziz-jm (3 commits)")[![albertcht](https://avatars.githubusercontent.com/u/9117929?v=4)](https://github.com/albertcht "albertcht (3 commits)")[![nasirkhan](https://avatars.githubusercontent.com/u/396987?v=4)](https://github.com/nasirkhan "nasirkhan (3 commits)")[![nikita240](https://avatars.githubusercontent.com/u/6479817?v=4)](https://github.com/nikita240 "nikita240 (3 commits)")[![moscoquera](https://avatars.githubusercontent.com/u/1452208?v=4)](https://github.com/moscoquera "moscoquera (2 commits)")[![ejeanneaubc](https://avatars.githubusercontent.com/u/18554193?v=4)](https://github.com/ejeanneaubc "ejeanneaubc (2 commits)")

---

Tags

laravelimagefilemanageruploadCKEditortinymcefilemanager

###  Code Quality

TestsPHPUnit

### Embed Badge

![Health badge](/badges/dkvhin-laravel-filemanager/health.svg)

```
[![Health](https://phpackages.com/badges/dkvhin-laravel-filemanager/health.svg)](https://phpackages.com/packages/dkvhin-laravel-filemanager)
```

###  Alternatives

[unisharp/laravel-filemanager

A file upload/editor intended for use with Laravel 5 to 10 and CKEditor / TinyMCE

2.2k3.3M74](/packages/unisharp-laravel-filemanager)[mafftor/laravel-file-manager

The file manager intended for using Laravel with CKEditor / TinyMCE / Colorbox

3619.3k](/packages/mafftor-laravel-file-manager)[itskodinger/midia

Simple Media manager for your Laravel project

1415.8k](/packages/itskodinger-midia)

PHPackages © 2026

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