-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
77 lines (77 loc) · 2.33 KB
/
composer.json
File metadata and controls
77 lines (77 loc) · 2.33 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
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "initphp/upload",
"description": "Validate and store uploaded files on local disk, FTP/FTPS or Amazon S3 through a single adapter-based API.",
"type": "library",
"license": "MIT",
"keywords": [
"upload",
"file-upload",
"filesystem",
"ftp",
"s3",
"aws",
"adapter",
"initphp"
],
"authors": [
{
"name": "Muhammet ŞAFAK",
"email": "info@muhammetsafak.com.tr",
"role": "Developer",
"homepage": "https://www.muhammetsafak.com.tr"
}
],
"support": {
"issues": "https://github.com/InitPHP/Upload/issues",
"source": "https://github.com/InitPHP/Upload",
"docs": "https://github.com/InitPHP/Upload/tree/main/docs"
},
"require": {
"php": ">=8.0",
"ext-fileinfo": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.6",
"phpstan/phpstan": "^1.12 || ^2.1",
"friendsofphp/php-cs-fixer": "^3.65"
},
"suggest": {
"ext-ftp": "Required by the FTP adapter (InitPHP\\Upload\\Adapters\\FTPAdapter).",
"aws/aws-sdk-php": "Required by the S3 adapter (InitPHP\\Upload\\Adapters\\S3Adapter)."
},
"autoload": {
"psr-4": {
"InitPHP\\Upload\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"InitPHP\\Upload\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-html build/coverage",
"stan": "phpstan analyse --no-progress",
"cs-check": "php-cs-fixer fix --dry-run --diff",
"cs-fix": "php-cs-fixer fix",
"ci": [
"@cs-check",
"@stan",
"@test"
]
},
"scripts-descriptions": {
"test": "Run the PHPUnit test suite.",
"test-coverage": "Run PHPUnit and produce an HTML coverage report under build/coverage.",
"stan": "Run PHPStan at the level configured in phpstan.neon.dist.",
"cs-check": "Report any PHP-CS-Fixer violations without modifying files.",
"cs-fix": "Apply PHP-CS-Fixer fixes in-place.",
"ci": "Run the full CI bundle locally: cs-check, stan, test."
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}