-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.81 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.81 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "farisc0de/phpfileuploading",
"description": "Production-ready PHP library for secure file uploads with validation, virus scanning, rate limiting, and cloud storage support.",
"type": "library",
"license": "MIT",
"keywords": [
"file-upload",
"upload",
"file",
"security",
"validation",
"image-processing",
"virus-scan",
"rate-limiting",
"storage"
],
"homepage": "https://github.com/farisc0de/PhpFileUploading",
"require": {
"php": ">=8.1",
"ext-fileinfo": "*",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"phpstan/phpstan": "^1.10",
"squizlabs/php_codesniffer": "^3.7"
},
"suggest": {
"ext-gd": "Required for image processing features",
"league/flysystem": "For cloud storage integration (S3, GCS, Azure)",
"league/flysystem-aws-s3-v3": "For Amazon S3 storage",
"monolog/monolog": "For advanced logging capabilities"
},
"autoload": {
"psr-4": {
"Farisc0de\\PhpFileUploading\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Farisc0de\\PhpFileUploading\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Faris AL-Otaibi",
"email": "farisksa79@gmail.com",
"role": "Developer"
}
],
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html coverage",
"phpstan": "phpstan analyse src --level=6",
"cs-check": "phpcs --standard=PSR12 src",
"cs-fix": "phpcbf --standard=PSR12 src"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"minimum-stability": "stable",
"prefer-stable": true
}