22
33Chunk Uploader Package For Laravel
44
5- [ ![ ] ( https://travis-ci.org/LaraCrafts /laravel-chunk-uploader.svg?branch=master )] ( https://travis-ci.org/LaraCrafts /laravel-chunk-uploader )
6- [ ![ ] ( https://poser.pugx.org/laracrafts /laravel-chunk-uploader/downloads )] ( https://packagist.org/packages/laracrafts /laravel-chunk-uploader )
7- [ ![ ] ( https://poser.pugx.org/laracrafts /laravel-chunk-uploader/version )] ( https://packagist.org/packages/laracrafts /laravel-chunk-uploader )
8- [ ![ ] ( https://scrutinizer-ci.com/g/LaraCrafts /laravel-chunk-uploader/badges/coverage.png?b=master )] ( https://scrutinizer-ci.com/g/LaraCrafts /laravel-chunk-uploader/ )
9- [ ![ ] ( https://poser.pugx.org/laracrafts /laravel-chunk-uploader/license )] ( https://packagist.org/packages/laracrafts /laravel-chunk-uploader )
5+ [ ![ Github Actions Badge ] ( https://github.com/coding-socks /laravel-chunk-uploader/workflows/test/badge .svg )] ( https://github.com/coding-socks /laravel-chunk-uploader/actions?query=workflow%3A"test" )
6+ [ ![ Downloads Badge ] ( https://poser.pugx.org/coding-socks /laravel-chunk-uploader/downloads )] ( https://packagist.org/packages/coding-socks /laravel-chunk-uploader )
7+ [ ![ Version Badge ] ( https://poser.pugx.org/coding-socks /laravel-chunk-uploader/version )] ( https://packagist.org/packages/coding-socks /laravel-chunk-uploader )
8+ [ ![ Coverage Badge ] ( https://scrutinizer-ci.com/g/coding-socks /laravel-chunk-uploader/badges/coverage.png?b=master )] ( https://scrutinizer-ci.com/g/coding-socks /laravel-chunk-uploader/ )
9+ [ ![ License Badge ] ( https://poser.pugx.org/coding-socks /laravel-chunk-uploader/license )] ( https://packagist.org/packages/coding-socks /laravel-chunk-uploader )
1010
1111This package helps integrate a Laravel application with chunk uploader libraries eg.
1212[ DropzoneJS] ( https://www.dropzonejs.com/ ) and
@@ -47,7 +47,7 @@ project at the moment is [tus](https://tus.io/).
4747You can easily install this package using Composer, by running the following command:
4848
4949``` bash
50- composer require laracrafts /laravel-chunk-uploader
50+ composer require coding-socks /laravel-chunk-uploader
5151```
5252
5353### Requirements
@@ -67,7 +67,7 @@ Route::any('/my-route', 'MyController@myFunction');
6767 - Using dependency injection
6868``` php
6969use Illuminate\Http\Request;
70- use LaraCrafts \ChunkUploader\UploadHandler;
70+ use CodingSocks \ChunkUploader\UploadHandler;
7171
7272class MyController extends Controller
7373{
@@ -80,7 +80,7 @@ class MyController extends Controller
8080 - Resolving from the app container
8181``` php
8282use Illuminate\Http\Request;
83- use LaraCrafts \ChunkUploader\UploadHandler;
83+ use CodingSocks \ChunkUploader\UploadHandler;
8484
8585class MyController extends Controller
8686{
@@ -104,7 +104,7 @@ library can be differ very much. Also, when possible the library gives the oppor
104104
105105### Events
106106
107- Once a file upload is finished a ` \LaraCrafts \ChunkUploader\Event\FileUploaded ` is triggered. This event contains
107+ Once a file upload is finished a ` \CodingSocks \ChunkUploader\Event\FileUploaded ` is triggered. This event contains
108108the disk and the path of the uploaded file.
109109[ Registering Events & Listeners from Laravel] ( https://laravel.com/docs/5.8/events#registering-events-and-listeners )
110110
@@ -133,8 +133,8 @@ app()->make(UploadManager::class)->extend('my_driver', function () {
133133});
134134```
135135
136- If you are adding a driver you need to extend the ` \LaraCrafts \ChunkUploader\Driver\UploadDriver ` abstract class, for
137- which you can use the shipped drivers (e.g. ` \LaraCrafts \ChunkUploader\Driver\BlueimpUploadDriver ` ) as an example as to
136+ If you are adding a driver you need to extend the ` \CodingSocks \ChunkUploader\Driver\UploadDriver ` abstract class, for
137+ which you can use the shipped drivers (e.g. ` \CodingSocks \ChunkUploader\Driver\BlueimpUploadDriver ` ) as an example as to
138138how.
139139
140140If you wrote a custom driver that others might find useful, please consider adding it to the package via a pull request.
@@ -193,11 +193,9 @@ information about contribution guidelines.
193193
194194## License
195195
196- ** Copyright (c) 2019 LaraCrafts.**
197-
198196This product is licensed under the MIT license, please refer to the [ License file] [ license ] for more information.
199197
200- [ contributing ] : https://github.com/LaraCrafts/laravel-chunk-uploader/blob/master/ CONTRIBUTING.md
201- [ license ] : https://github.com/LaraCrafts/laravel-chunk-uploader/blob/master/ LICENSE
198+ [ contributing ] : CONTRIBUTING.md
199+ [ license ] : LICENSE
202200[ php-max-file-uploads ] : https://www.php.net/manual/en/ini.core.php#ini.max-file-uploads
203201[ php-upload-max-filesize ] : https://www.php.net/manual/en/ini.core.php#ini.upload-max-filesize
0 commit comments