Skip to content

Commit 0377e5a

Browse files
YannikFirrenerg4l
authored andcommitted
UPDATED - readme
1 parent d164e4e commit 0377e5a

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This package helps integrate a Laravel application with chunk uploader libraries
1212
[DropzoneJS](https://www.dropzonejs.com/) and
1313
[jQuery-File-Upload from blueimp](https://blueimp.github.io/jQuery-File-Upload/).
1414

15-
Uploading a large file in chunks can help reduce risks.
15+
Uploading a large file in chunks can help reduce risks.
1616

1717
- PHP from 5.3.4 limits the number of concurrent uploads and by uploading a file in one request can limit the
1818
availability of a service. ([max_file_uploads][php-max-file-uploads])
@@ -47,7 +47,7 @@ project at the moment is [tus](https://tus.io/).
4747
- [NOP identifier](#nop-identifier)
4848
- [Contribution](#contribution)
4949
- [License](#license)
50-
50+
5151
## Installation
5252

5353
You can easily install this package using Composer, by running the following command:
@@ -60,8 +60,8 @@ composer require coding-socks/laravel-upload-handler
6060

6161
This package has the following requirements:
6262

63-
- PHP 7.1 or higher
64-
- Laravel 5.5 or higher
63+
- PHP 7.3 or higher
64+
- Laravel 7 or higher
6565

6666
## Usage
6767

@@ -118,7 +118,7 @@ the disk and the path of the uploaded file.
118118
- [Laravel 8.x - Defining Listeners](https://laravel.com/docs/8.x/events#defining-listeners)
119119

120120
You can also add a `Closure` as the second parameter of the `handle` method to add an inline listener. The listener
121-
is called with the disk and the path of the uploaded file.
121+
is called with the disk and the path of the uploaded file.
122122

123123
```php
124124
$handler->handle($request, function ($disk, $path) {

0 commit comments

Comments
 (0)