PHPackages                             evneandreys/yii2-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. evneandreys/yii2-filemanager

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

evneandreys/yii2-filemanager
============================

A file manager for Yii2. Allow user to manage files from any location as well as browsing files within the application.

1.0.3(9y ago)368MITPHPPHP &gt;=5.4.0

Since Jul 4Pushed 8y ago1 watchersCompare

[ Source](https://github.com/evneandreys/yii2-filemanager)[ Packagist](https://packagist.org/packages/evneandreys/yii2-filemanager)[ RSS](/packages/evneandreys-yii2-filemanager/feed)WikiDiscussions master Synced 4w ago

READMEChangelog (4)Dependencies (9)Versions (4)Used By (0)

File Manager for Yii2 (by dpodium/yii2-filemanager)
===================================================

[](#file-manager-for-yii2-by-dpodiumyii2-filemanager)

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

[](#installation)

### Install With Composer

[](#install-with-composer)

The preferred way to install this extension is through [composer](http://getcomposer.org/download/).

Either run

```
php composer.phar require evneandreys/yii2-filemanager

```

or add

```
"evneandreys/yii2-filemanager": "dev-master"

```

to the require section of your `composer.json` file.

Execute migration here:

```
yii migrate --migrationPath=@vendor/evneandreys/yii2-filemanager/migrations
yii migrate/down --migrationPath=@vendor/evneandreys/yii2-filemanager/migrations

```

Usage
-----

[](#usage)

Once the extension is installed, simply modify your application configuration as follows:

Configure i18n component:

```
'components' => [
    // ...
    'i18n' => [
	'translations' => [
	    '*' => [
		'class' => 'yii\i18n\PhpMessageSource',
	    ],
	],
    ],
    // ...
],
```

Upload file in local:

```
return [
	'modules' => [
            'gridview' => [
                'class' => '\kartik\grid\Module'
            ],
            'filemanager' => [
                'class' => 'evneandreys\filemanager\Module',
                'storage' => ['local'],
                // This configuration will be used in 'filemanager/files/upload'
                // To support dynamic multiple upload
                // Default multiple upload is true, max file to upload is 10
                // If multiple set to true and maxFileCount is not set, unlimited multiple upload
                'filesUpload' => [
                    'multiple' => true,
                    'maxFileCount' => 30
                ],
                // in mime type format
                'acceptedFilesType' => [
                    'image/jpeg',
                    'image/png',
                    'image/gif',
                ],
                // MB
                'maxFileSize' => 8,
                // [width, height], suggested thumbnail size is 120X120
                'thumbnailSize' => [120,120]
            ]
        ]
];
```

Upload file to AWS S3:

```
return [
	'modules' => [
	    'gridview' => [
                'class' => '\kartik\grid\Module'
            ],
            'filemanager' => [ // do not change module to other name
                'class' => 'evneandreys\filemanager\Module',
                // This configuration will be used in 'filemanager/files/upload'
                // To support dynamic multiple upload
                // Default multiple upload is true, max file to upload is 10
                // If multiple set to true and maxFileCount is not set, unlimited multiple upload
                'filesUpload' => [
                    'multiple' => true,
                    'maxFileCount' => 30
                ],
                'storage' => [
                    's3' => [
                        'key' => 'your aws s3 key',
                        'secret' => 'your aws s3 secret',
                        'bucket' => '',
                        'region' => '',
                        'proxy' => '192.168.16.1:10'
                    ]
                ],
                // in mime type format
                'acceptedFilesType' => [
                    'image/jpeg',
                    'image/png',
                    'image/gif',
                ],
                // MB
                'maxFileSize' => 8,
                // [width, height], suggested thumbnail size is 120X120
                'thumbnailSize' => [120,120]
            ]
        ]
];
```

You can then access File Manager through the following URL:

```
http://localhost/path/to/index.php?r=filemanager/folders
http://localhost/path/to/index.php?r=filemanager/files

```

In order to use File Manager Browse feature:

```
    use yii\helpers\Html;
    use yii\widgets\ActiveForm;
    use evneandreys\filemanager\widgets\FileBrowse;

    // This is just an example to upload a banner
    $form = ActiveForm::begin();
    echo $form->field($model, 'banner_name');
    echo $form->field($model, 'banner_description');

    // if you would like to store file_identifier in your table
    echo $form->field($model, 'file_identifier')->widget(FileBrowse::className(), [
            'multiple' => false, // allow multiple upload
            'folderId' => 1 // set a folder to be uploaded to.
    ]);

    echo Html::submitButton('Submit', ['class' => 'btn btn-primary']);
    ActiveForm::end();

    // !important: modal must be rendered after form
    echo FileBrowse::renderModal();
```

###  Health Score

28

—

LowBetter than 52% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity12

Limited adoption so far

Community9

Small or concentrated contributor base

Maturity60

Established project with proven stability

 Bus Factor1

Top contributor holds 96.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 ~7 days

Total

4

Last Release

3625d ago

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/13333274?v=4)[Scherban Andrey](/maintainers/evneandreys)[@evneandreys](https://github.com/evneandreys)

---

Top Contributors

[![evneandreys](https://avatars.githubusercontent.com/u/13333274?v=4)](https://github.com/evneandreys "evneandreys (26 commits)")[![alona-sh](https://avatars.githubusercontent.com/u/9162106?v=4)](https://github.com/alona-sh "alona-sh (1 commits)")

---

Tags

filemanageryii2widgetfilemanagerbrowseEVNEScherban Andrey3js.name3JStudio

### Embed Badge

![Health badge](/badges/evneandreys-yii2-filemanager/health.svg)

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

###  Alternatives

[noam148/yii2-image-manager

A Yii2 module/widget for upload and cropping images

12914.9k](/packages/noam148-yii2-image-manager)[liyunfang/yii2-upload-behavior

Upload behavior for Yii 2

161.7k](/packages/liyunfang-yii2-upload-behavior)

PHPackages © 2026

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