-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1.28 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
{
"name": "nassiry/filesize-handler",
"description": "A PHP package for handling file size with binary, decimal & locale units support.",
"keywords": [
"file-size",
"php-file-zie",
"php-size-binary",
"php-size-decimal"
],
"license": "MIT",
"authors": [
{
"name": "A.S Nassiry",
"email": "[email protected]",
"homepage": "https://github.com/nassiry/filesize-handler",
"role": "Developer"
}
],
"require": {
"php": ">=8.0",
"ext-intl": "*",
"composer/installers": "^1.12"
},
"autoload": {
"psr-4": {
"Nassiry\\FileSizeUtility\\": "src/"
}
},
"extra": {
"installer-paths": {
"extensions/{$name}/": ["type:filesize-handler-extension"]
}
},
"suggest": {
"nassiry/filesize-handler-ftp-extension": "Add support for FTP file sizes.",
"nassiry/filesize-handler-s3-extension": "Add support for Amazon S3 file sizes.",
"nassiry/filesize-handler-googlecloud-extension": "Add support for Google Cloud file sizes.",
"nassiry/filesize-handler-remote-extension": "Add support for Remote file sizes."
},
"minimum-stability": "dev",
"prefer-stable": true
}