-
Notifications
You must be signed in to change notification settings - Fork 46
/
Copy pathcomposer.json
81 lines (81 loc) · 2.47 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
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
78
79
80
81
{
"name": "rmunate/spell-number",
"description": "Easily convert numbers to letters, this library supports the native PHP INTL extension with which we can easily convert numbers to letters. This library provides us with the possibility of converting only to numbers or to currency formats depending on the language to be used, this package has support in the languages en: English, es: Spanish, pt: Portuguese, fr: French, it: Italian, ro: Romanian, fa: Farsi, hi: Hindi, pl: Polish.",
"keywords": [
"towords",
"toletters",
"numbers",
"spell",
"spell-number",
"spell-numbers",
"code-maestro",
"rmunate"
],
"homepage": "https://github.com/rmunate/SpellNumber",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Rmunate\\Utilities\\": "src/"
}
},
"authors": [
{
"name": "Raul Mauricio Uñate Castro",
"email": "[email protected]",
"homepage": "https://github.com/rmunate",
"role": "owner"
},
{
"name": "Olsza",
"homepage": "https://github.com/olsza",
"role": "developer"
},
{
"name": "Er. Ashok Devatwal",
"email": "[email protected]",
"homepage": "https://github.com/ashokdevatwal",
"role": "developer"
},
{
"name": "Siros Fakhri",
"homepage": "https://github.com/sirosfakhri",
"role": "developer"
},
{
"name": "Jens Twesmann",
"homepage": "https://github.com/jetwes",
"role": "developer"
},
{
"name": "Gabriel Rausch",
"homepage": "https://github.com/gdsrmygdsrjr",
"role": "developer"
},
{
"name": "Alejandro Diaz",
"homepage": "https://github.com/alejandrodiazpinilla",
"role": "developer"
}
],
"require": {
"php": "^8.0",
"ext-intl": "*",
"illuminate/support": "^8.0|^9.0|^10.0"
},
"require-dev": {
"phpunit/phpunit": "^10.4"
},
"extra" : {
"branch-alias" : {
"dev-main": "1.0.x-dev"
},
"laravel": {
"providers": [
"Rmunate\\Utilities\\Providers\\SpellNumberProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}