-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathcomposer.json
38 lines (38 loc) · 1.02 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
{
"name": "rakibhstu/number-to-bangla",
"description": "Laravel package to convert English numbers to Bangla number or Bangla text, Bangla month name and Bangla Money Format",
"keywords": ["laravel","bengali number","bangla","month"],
"homepage": "https://github.com/rakibdevs/number-to-bangla",
"license": "MIT",
"authors": [
{
"name": "Md. Rakibul Islam",
"email": "[email protected]",
"homepage": "https://github.com/rakibdevs"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Rakibhstu\\Banglanumber\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Rakibhstu\\Banglanumber\\Test\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Rakibhstu\\Banglanumber\\NumberToBanglaServiceProvider"
]
}
},
"minimum-stability": "stable"
}