Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/krato/laravel-5-file-manager
A package to use a File Manager system
https://github.com/krato/laravel-5-file-manager
filemanager laravel laravel5
Last synced: 2 months ago
JSON representation
A package to use a File Manager system
- Host: GitHub
- URL: https://github.com/krato/laravel-5-file-manager
- Owner: Krato
- Created: 2016-04-13T15:55:17.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-03-01T09:50:54.000Z (almost 7 years ago)
- Last Synced: 2024-09-28T19:03:25.317Z (3 months ago)
- Topics: filemanager, laravel, laravel5
- Language: HTML
- Homepage:
- Size: 2.36 MB
- Stars: 32
- Watchers: 8
- Forks: 7
- Open Issues: 1
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# FileManager for Laravel 5
Custom file manager for Laravel 5
[![Latest Stable Version](https://poser.pugx.org/infinety-es/filemanager/v/stable?format=flat-square)](https://packagist.org/packages/infinety-es/filemanager)
[![Total Downloads](https://poser.pugx.org/infinety-es/filemanager/downloads?format=flat-square)](https://packagist.org/packages/infinety-es/filemanager)
[![StyleCI](https://styleci.io/repos/56165871/shield)](https://styleci.io/repos/56165871)
[![License](https://img.shields.io/packagist/l/infinety-es/filemanager.svg?style=flat-square)](https://packagist.org/packages/infinety-es/filemanager)![screenshot-1](https://cloud.githubusercontent.com/assets/74367/15646143/77016990-265c-11e6-9ecc-d82ae2c74f71.png)
### Changelog
v2.3 - Autoload provider for Laravel 5.5
v2.1 - Now, you can compress images (jpg or png). Automatic for uploads and rightMenu option also.
v2 - You can use with your original Laravel 5 files. Multiple fixes and addons.### Installation
First require this package:
```sh
composer require infinety-es/filemanager
```Add the provider on ‘app.php’:
```php
Infinety\FileManager\FileManagerServiceProvider::class,
```Aliase to `Zipper` is automatic loaded from `FileManagerServiceProvider (It's required to download folders in zip format):
Publish config, views and public files:
```php
php artisan vendor:publish --provider="Infinety\FileManager\FileManagerServiceProvider"
```Then you need to modify options on new file on options `filemanager.php`
```php
public_path(),/*
|--------------------------------------------------------------------------
| Default routes for your file manager. You can modify here:
|--------------------------------------------------------------------------
|
*/
'defaultRoute' => 'admin/filemanager',/*
|--------------------------------------------------------------------------
| User middleware. You can use or single string or array based
|--------------------------------------------------------------------------
|
*/
'middleware' => ['web', 'auth'],/*
|--------------------------------------------------------------------------
| Use this options if you want to sanitize file and folder names
|--------------------------------------------------------------------------
|
*/
'validName' => true,/*
|--------------------------------------------------------------------------
| Files You don't want to show on File Manager
|--------------------------------------------------------------------------
|
*/
'exceptFiles' => array( 'robots.txt', 'index.php', '.DS_Store', '.Thumbs.db'),/*
|--------------------------------------------------------------------------
| Folders names you don't want to show on File Manager
|--------------------------------------------------------------------------
|
*/
'exceptFolders' => array( 'vendor', 'thumbs', 'filemanager_assets'),/*
|--------------------------------------------------------------------------
| Extensions you don't want to show on File Manager
|--------------------------------------------------------------------------
|
*/
'exceptExtensions' => array( 'php', 'htaccess', 'gitignore'),/*
|--------------------------------------------------------------------------
| Append tu url. For if you use a custom service to load assets by url. Example here: http://stackoverflow.com/a/36351219/4042595
|--------------------------------------------------------------------------
|
*/
'appendUrl' => null,/*
|--------------------------------------------------------------------------
| If optimizeImages is set tu true, action to optimize images will be available under contextualMenu.
| Images will be also optimized by method upload
| False by default
|--------------------------------------------------------------------------
|
*/
'optimizeImages' => false,/*
|--------------------------------------------------------------------------
| Path for pngquant. This is used to auto optimize png files. If set to null, FileManager will not optimize png files.
| You must install pngquant in your host. https://pngquant.org
| Must have optimizeImages option set to true
| Null by default
|--------------------------------------------------------------------------
|
*/
'pngquantPath' => null,/*
|--------------------------------------------------------------------------
| Path for pngquant. This is used to auto optimize jpg files. If set to null, FileManager will not optimize jpg files.
| You must install JPEG Archive in your host. https://github.com/danielgtaylor/jpeg-archive
| Must have optimizeImages option set to true
| Null by default
|--------------------------------------------------------------------------
|
*/
'jpegRecompressPath' => null,);
```You can see your new FileManager. Default to: `admin/filemanager`.
### Dialog (Modal) version
FileManager has also a dialog or modal version.
[How to use dialog as file selector](dialog.md)
### More Screenshots
![screenshot-2](https://cloud.githubusercontent.com/assets/74367/15646186/a05dfe2a-265c-11e6-8374-0e6673b23508.png)
![screenshot-3](https://cloud.githubusercontent.com/assets/74367/15646188/a0964168-265c-11e6-86fb-b17c9e781c28.png)
![screenshot-4](https://cloud.githubusercontent.com/assets/74367/15646187/a07894a6-265c-11e6-84b3-ff4b7cac3203.png)
![screenshot-5](https://cloud.githubusercontent.com/assets/74367/15646185/a03df24c-265c-11e6-9b0e-349bebd5d241.png)
### ToDo
* Better docs
### Thanks
* Daniel Morales: [dmuploader][1]
* SWIS: [contextMenu][2]
* Nils Plaschke: [Chumper/Zipper][3]----
License: MIT## Contributing [![contributions welcome](https://img.shields.io/badge/contributions-welcome-brightgreen.svg?style=flat)](https://github.com/Krato/Laravel-5-File-Manager/issues)
[1]: https://github.com/danielm/uploader
[2]: https://github.com/swisnl/jQuery-contextMenu
[3]: https://github.com/Chumper/Zipper