This repository was archived by the owner on Mar 25, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
43 lines (43 loc) · 1.47 KB
/
composer.json
File metadata and controls
43 lines (43 loc) · 1.47 KB
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
{
"name": "aminyazdanpanah/handling-file-uploads",
"description": "Easily save all your uploaded files into your path directory and extract their info",
"keywords": ["save", "upload", "file", "filename", "move to", "image", "validator", "php", "video", "image", "archive", "audio"],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Amin Yazdanpanah",
"email": "[email protected]",
"homepage": "http://www.aminyazdanpanah.com"
}
],
"minimum-stability": "dev",
"config": {
"sort-packages": true
},
"autoload": {
"files": [
"src/helpers.php"
],
"psr-4": {
"AYazdanpanah\\SaveUploadedFiles\\": "src"
}
},
"require-dev": {
"phpunit/phpunit": "8.4.1"
},
"autoload-dev": {
"psr-4": {
"Tests\\SaveUploadedFiles\\": "tests"
}
},
"require": {
"php": "^7.1",
"aminyazdanpanah/php-ffmpeg-video-streaming": "1.1.*"
},
"suggest": {
"aminyazdanpanah/php-ffmpeg-video-streaming": "aminyazdanpanah/php-ffmpeg-video-streaming is suggested for validate video files and create DASH and HLS files.",
"gumlet/php-image-resize": "gumlet/php-image-resize is suggested for validate image files and resize images",
"wapmorgan/unified-archive": "wapmorgan/unified-archive is suggested for validate archive files and extracting archives"
}
}