-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
34 lines (34 loc) · 928 Bytes
/
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": "stichoza/georgian-number-to-words",
"description": "Convert a number or money into words in Georgian language.",
"keywords": ["georgia", "georgian", "money", "number", "numbers", "translation", "localization", "l10n", "words"],
"type": "library",
"license": "MIT",
"homepage": "https://github.com/Stichoza/georgian-number-to-words",
"authors": [
{
"name": "Levan Velijanashvili",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-mbstring": "*"
},
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"autoload": {
"psr-4": {
"Stichoza\\GeorgianNumberToWords\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Stichoza\\GeorgianNumberToWords\\Tests\\": "tests/"
}
}
}