efureev / laravel-file-manager
This package is abandoned and no longer maintained.
No replacement package was suggested.
File manager for Laravel
v2.5.4
2021-04-07 07:57 UTC
Requires
- php: >=7.4.0
- ext-json: *
- ext-zip: *
- efureev/support: ^3.0
- illuminate/http: ^7.30|^8.0
- illuminate/support: ^7.30|^8.0
- intervention/image: ^2.5
- intervention/imagecache: ^2.5
- league/flysystem: ^1.0
Requires (Dev)
- orchestra/testbench: ^5.16
- phpunit/phpunit: ^9.5
- roave/security-advisories: dev-master
- squizlabs/php_codesniffer: ^3.5
- dev-master
- v2.5.4
- v2.5.3
- v2.5.2
- v2.5.1
- v2.5.0
- v2.4.14
- v2.4.13
- v2.4.12
- v2.4.11
- v2.4.10
- v2.4.9
- v2.4.8
- v2.4.7
- v2.4.6
- v2.4.5
- v2.4.4
- v2.4.3
- v2.4.2
- v2.4.1
- v2.4.0
- v2.3.2
- v2.3.1
- v2.3.0
- v2.2.3
- v2.2.2
- v2.2.1
- 2.1.4
- v2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- v2.0.6
- v2.0.5
- v2.0.4
- v2.0.3
- v2.0.2
- v2.0.1
- v2.0.0
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-develop
This package is auto-updated.
Last update: 2021-05-07 08:15:31 UTC
README
DEMO: Laravel File Manager
Vue.js Frontend: alexusmai/vue-laravel-file-manager
Documentation
Features
- Frontend on Vue.js - vue-laravel-file-manager
- Work with the file system is organized by the standard means Laravel Flysystem:
- Local, FTP, S3, Dropbox ...
- The ability to work only with the selected disks
- Several options for displaying the file manager:
- One-panel view
- One-panel + Directory tree
- Two-panel
- The minimum required set of operations:
- Creating files
- Creating folders
- Copying / Cutting Folders and Files
- Renaming
- Uploading files (multi-upload)
- Downloading files
- Two modes of displaying elements - table and grid
- Preview for images
- Viewing images
- Full screen mode
- More operations (v.2):
- Audio player (mp3, ogg, wav, aac), Video player (webm, mp4) - (Plyr)
- Code editor - (Code Mirror)
- Image cropper - (Cropper.js)
- Zip / Unzip - only for local disks
- Integration with WYSIWYG Editors:
- CKEditor 4
- TinyMCE 4
- TinyMCE 5
- SummerNote
- Standalone button
- ACL - access control list
- delimiting access to files and folders
- two work strategies:
- blacklist - Allow everything that is not forbidden by the ACL rules list
- whitelist - Deny everything, that not allowed by the ACL rules list
- You can use different repositories for the rules - an array (configuration file), a database (there is an example implementation), or you can add your own.
- You can hide files and folders that are not accessible.
- Events (v2.2)
- Thumbnails lazy load
- Dynamic configuration (v2.4)
- Supported locales : ru, en, ar, sr, cs, de, es, nl, zh-CN, fa, it, tr, fr, pt-BR, zh-TW, pl
In a new version 2.5
You can change Route prefix (default - 'file-manager')
/** * LFM Route prefix * !!! WARNING - if you change it, you should compile frontend with new prefix(baseUrl) !!! */ 'routePrefix' => 'file-manager',
Open PDF files in a new tab (test) - use 'double-click'
Upgrading to version 2.5
Add a new parameter to the configuration file (config/file-manager.php)
/** * LFM Route prefix * !!! WARNING - if you change it, you should compile frontend with new prefix(baseUrl) !!! */ 'routePrefix' => 'file-manager',
Update pre-compiled css and js files.
php artisan vendor:publish --tag=fm-assets --force