-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
36 lines (36 loc) · 1015 Bytes
/
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
{
"name": "ramazancetinkaya/byte-formatter",
"description": "A modern PHP library for formatting and parsing byte values with precision and flexibility.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Ramazan Çetinkaya",
"email": "ramazancetinkaya1337@protonmail.com",
"homepage": "https://github.com/ramazancetinkaya",
"role": "Developer"
}
],
"require": {
"php": ">=8.0"
},
"autoload": {
"psr-4": {
"ramazancetinkaya\\": "src/"
}
},
"keywords": [
"php",
"php-library",
"byte-formatter",
"binary",
"decimal",
"size-conversion",
"data-formatting"
],
"homepage": "https://github.com/ramazancetinkaya/byte-formatter",
"support": {
"issues": "https://github.com/ramazancetinkaya/byte-formatter/issues",
"source": "https://github.com/ramazancetinkaya/byte-formatter"
}
}