forked from wapmorgan/Morphos
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
34 lines (34 loc) · 1.09 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": "wapmorgan@gmail.com",
"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",
"src/initialization.php"
],
"psr-4": {
"morphos\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "~4.8"
}
}