-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (38 loc) · 1.3 KB
/
composer.json
File metadata and controls
38 lines (38 loc) · 1.3 KB
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": "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"
],
"psr-4": {
"morphos\\": "src/"
}
},
"require-dev": {
"php": ">=7.3",
"phpunit/phpunit": "~9.5.20"
},
"scripts": {
"build-docker-image": "docker build --tag wapmorgan/morphos:$(git describe --exact-match --tags) .",
"push-docker-image": "docker push wapmorgan/morphos:$(git describe --exact-match --tags) ."
}
}