-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
23 lines (23 loc) · 759 Bytes
/
composer.json
File metadata and controls
23 lines (23 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "rundiz/upload",
"type": "library",
"description": "Upload single or multiple files with validations. (allowed file extensions, matched mime type, max file size, security scan, reserved file name, safe for web file name).",
"keywords": ["upload", "upload single file", "upload multiple files", "upload array", "secure upload", "web safe file name", "php upload"],
"license": "MIT",
"authors": [
{
"name": "Vee W.",
"email": "kawewong@gmail.com",
"homepage": "http://rundiz.com",
"role": "Developer"
}
],
"require": {
"php": ">=5.3.0"
},
"autoload": {
"psr-4": {
"Rundiz\\Upload\\" : "Rundiz/Upload"
}
}
}