-
Notifications
You must be signed in to change notification settings - Fork 106
/
composer.json
34 lines (34 loc) · 1.08 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
{
"name": "wapmorgan/morphos",
"description": "A morphological solution for Russian and English language written completely in PHP. Provides classes to inflect personal names, geographical names, decline and pluralize nouns, generate cardinal and ordinal numerals, spell out money amounts and time.",
"license": "MIT",
"keywords": ["language", "morphology", "russian", "english", "inflection", "personal names", "geographical names", "declension", "nouns", "adjectives", "pluralization", "spelling", "human-friendly", "numerals", "cardinal", "ordinal", "money", "time"],
"homepage": "http://morphos.io",
"authors": [
{
"name": "Sergey Vanyushin",
"email": "[email protected]",
"role": "developer"
}
],
"require": {
"php": ">=5.4.0",
"ext-mbstring": "*"
},
"suggest": {
"ext-readline": "For using interactive version of script"
},
"autoload": {
"files": [
"src/English/functions.php",
"src/Russian/functions.php"
],
"psr-4": {
"morphos\\": "src/"
}
},
"require-dev": {
"php": ">=7.3",
"phpunit/phpunit": "~9.5.20"
}
}