All Projects → pionl → Laravel Chunk Upload

pionl / Laravel Chunk Upload

Licence: mit
The basic implementation for chunk upload with multiple providers support like jQuery-file-upload, pupload, DropZone and resumable.js

Projects that are alternatives of or similar to Laravel Chunk Upload

Blogetc
Easily add a full Laravel blog (with built in admin panel and public views) to your laravel project with this simple package.
Stars: ✭ 198 (-28%)
Mutual labels:  laravel, laravel-5-package
Sneaker
An easy way to send emails whenever an exception occurs on server.
Stars: ✭ 223 (-18.91%)
Mutual labels:  laravel, laravel-5-package
Voyager Hooks
Hooks system integrated into Voyager.
Stars: ✭ 200 (-27.27%)
Mutual labels:  laravel, laravel-5-package
Laravel Cart Manager
Managing the cart in your Laravel/E-commerce application is a breeze
Stars: ✭ 175 (-36.36%)
Mutual labels:  laravel, laravel-5-package
Laracrud
Laravel Code Generator based on MySQL Database
Stars: ✭ 238 (-13.45%)
Mutual labels:  laravel, laravel-5-package
Laravel Tournaments
Laravel Package that allows you to generate customizable tournaments trees.
Stars: ✭ 196 (-28.73%)
Mutual labels:  laravel, laravel-5-package
Hooks
Hooks is a extension system for your Laravel application.
Stars: ✭ 202 (-26.55%)
Mutual labels:  laravel, laravel-5-package
Telegram Bot Sdk
🤖 Telegram Bot API PHP SDK. Lets you build Telegram Bots easily! Supports Laravel out of the box.
Stars: ✭ 2,212 (+704.36%)
Mutual labels:  laravel, laravel-5-package
Laravel Database Encryption
A package for automatically encrypting and decrypting Eloquent attributes in Laravel 5.5+, based on configuration settings.
Stars: ✭ 238 (-13.45%)
Mutual labels:  laravel, laravel-5-package
Auth Tests
Always-current tests for Laravel's authentication system. Curated by the community.
Stars: ✭ 230 (-16.36%)
Mutual labels:  laravel, laravel-5-package
Lapse
Laravel Self Hosted Tiny Error Tracking System With Notifications
Stars: ✭ 172 (-37.45%)
Mutual labels:  laravel, laravel-5-package
Laravel Gitscrum
GitScrum is a Project Management Tool, developed to help entrepreneurs, freelancers, managers, and teams Skyrocket their Productivity with the Agile methodology and Gamification.
Stars: ✭ 2,686 (+876.73%)
Mutual labels:  laravel, laravel-5-package
Partyline
Output to Laravel's console from outside of your Command classes.
Stars: ✭ 168 (-38.91%)
Mutual labels:  laravel, laravel-5-package
Laradmin
Laradmin后台管理系统
Stars: ✭ 197 (-28.36%)
Mutual labels:  laravel, laravel-5-package
Laravel Page Speed
Package to optimize your site automatically which results in a 35%+ optimization
Stars: ✭ 2,097 (+662.55%)
Mutual labels:  laravel, laravel-5-package
Voyager Frontend
The Missing Front-end for The Missing Laravel Admin 🔥
Stars: ✭ 200 (-27.27%)
Mutual labels:  laravel, laravel-5-package
Laravel Mobile Detect
Mobile detection within Blade templates
Stars: ✭ 154 (-44%)
Mutual labels:  laravel, laravel-5-package
Laravel Gmail
Laravel wrapper for the Gmail API
Stars: ✭ 162 (-41.09%)
Mutual labels:  laravel, laravel-5-package
Laravel Jwt
Dead simple, plug and play JWT API Authentication for Laravel (5.4+)
Stars: ✭ 225 (-18.18%)
Mutual labels:  laravel, laravel-5-package
Bouncer
Eloquent roles and abilities.
Stars: ✭ 2,763 (+904.73%)
Mutual labels:  laravel, laravel-5-package

Laravel Chunk Upload

Total Downloads Build Status Latest Stable Version Latest Unstable Version License

Introduction

Supports Laravel from 5.2 to 7 (covered by integration tests on all versions).

Easy to use service/library for chunked upload with supporting multiple JS libraries on top of Laravel's file upload with low memory footprint in mind.

Supports feature as cross domains requests, automatic clean schedule and easy usage.

Example repository with integration tests can be found in laravel-chunk-upload-example.

Before adding pull requests read CONTRIBUTION.md. Help me fix your bugs by debugging your issues using XDEBUG (and try to do a fix - it will help you become better).

Installation

1. Install via composer

composer require pion/laravel-chunk-upload

2. Publish the config (Optional)

php artisan vendor:publish --provider="Pion\Laravel\ChunkUpload\Providers\ChunkUploadServiceProvider"

Usage

Setup consists of 3 steps:

  1. Integrate your controller that will handle the file upload. How to
  2. Set a route for the controller. How to
  3. Choose your front-end provider below (we support multiple providers in single controller)
Library Wiki single & chunk upload simultaneous uploads In example project Author
resumable.js Wiki ✔️ ✔️ ✔️ @pionl
DropZone Wiki ✔️ ✔️ ✔️ @pionl
jQuery-File-Upload Wiki ✔️ ✖️ ✔️ @pionl
Plupload Wiki ✔️ ✖️ ✖️ @pionl
simple uploader ✖️ ✔️ ✖️ ✖️ @dyktek
ng-file-upload Wiki ✔️ ✖️ ✖️ @L3o-pold

Simultaneous uploads: The library must send last chunk as last, otherwise the merging will not work correctly.

Custom disk: At this moment I recommend using the basic storage setup (not linking public folder). It is not tested (Have free time to ensure it is working? PR the changes!).

For more detailed information (tips) use the Wiki or for working example continue to separate repository with example.

Changelog

Can be found in releases.

Contribution or extending

Read contribution before your PR (and use example repository to run integration tests).

See CONTRIBUTING.md for how to contribute changes. All contributions are welcome.

Compatibility

  • 7.* (last tested on v7.16.1)
  • 6.* (last tested on v6.18.20)
  • 5.8.* (last tested on v5.8.38)
  • 5.7.* (last tested on v5.7.29)
  • 5.6.* (last tested on v5.6.40)
  • 5.5.* (last tested on v5.5.49)
  • 5.4.* (last tested on v5.4.36)
  • 5.3.* (last tested on v5.3.31)
  • 5.2.* (last tested on v5.2.45)

Copyright and License

laravel-chunk-upload was written by Martin Kluska and is released under the MIT License.

Copyright (c) 2016 and beyond Martin Kluska

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].