forked from ivanovsaleksejs/NumToText
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
39 lines (39 loc) · 1.01 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
{
"name": "ivanovsaleksejs/num-to-text",
"description": "Converts numbers or prices to text representation in various languages. For example, 437605 becomes \"four hundred thirty seven thousand six hundred five\". Price class for displaying prices with currencies is also available.",
"keywords": [
"php",
"english",
"latvian",
"russian",
"nlp"
],
"license": "MIT",
"authors": [
{
"name": "Aleksejs Ivanovs",
"email": "[email protected]"
},
{
"name": "Denis Mosolov",
"email": "[email protected]"
},
{
"name": "Viesturs Kavacs",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"ivanovsaleksejs\\NumToText\\": "src"
}
},
"require": {
"php": "^7.2|^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "3.*"
}
}