-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
31 lines (31 loc) · 874 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
{
"name": "zhanang19/human-readable-number",
"description": "This package will provide a simple helper to format a number into a human friendly number",
"homepage": "https://github.com/zhanang19/human-readable-number",
"require": {
"illuminate/support": "^5.5 || ^6.0 || ^7.0"
},
"license": "MIT",
"authors": [
{
"name": "Zainal Hasan",
"email": "[email protected]",
"homepage": "https://zhanang.id",
"role": "Developer"
}
],
"autoload": {
"psr-4": {
"Zhanang19\\HumanReadableNumber\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"Zhanang19\\HumanReadableNumber\\HumanReadableNumberServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}