-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
54 lines (54 loc) · 1.54 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "learncodeweb/filesupload",
"description": "A very simple (GD library Image processing) class for upload multiple files. You can create multiple thumbnails, add watermark (text/image), resize and change the quality of the images. You can also use this class with any PHP framework, tested with Laravel 8 and Laravel 9.",
"homepage": "https://learncodeweb.com/web-development/resize-and-upload-multiple-images-using-php-and-ajax/",
"type": "gd-image-processing",
"keywords": [
"PHP",
"Compatible with frameworks and core PHP",
"Quality upload",
"Compress Images",
"Any file upload",
"Create thumbnails",
"Add watermark",
"Change the watermark position",
"Rename upload files name",
"Check file size before upload",
"Manage upload file extentions",
"Free for commercial use",
"File upload class",
"Ajax uploader",
"Image manipulation",
"Dropzone",
"Multiple files",
"Multiple file upload",
"PHP Pagination Class With Bootstrap 4",
"Free",
"learncodeweb.com"
],
"minimum-stability": "stable",
"authors": [
{
"name": "Khalid Zaid Bin [Mian Zaid]",
"email": "[email protected]"
}
],
"license": "MIT",
"support": {
"issues": "https://github.com/LearnCodeWeb/multi-files-upload-and-image-resizer/issues"
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": ">=6.0.0"
},
"suggest": {
"ext-gd": "to use GD library based image processing."
},
"autoload": {
"classmap": [
"./src/FilesUploadAndImageResize.php"
]
}
}