forked from kwn/number-to-words
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
32 lines (32 loc) · 847 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
{
"name": "kwn/number-to-words",
"description": "Multi language standalone PHP number to words converter. Fully tested, open for extensions and new languages.",
"type": "library",
"license": "MIT",
"keywords": ["number", "to", "words", "string", "money", "currency", "angle"],
"authors": [
{
"name": "Karol Wnuk",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6"
},
"require-dev": {
"phpunit/phpunit": "^5.7.9",
"phpmd/phpmd": "^2.6.0",
"codeclimate/php-test-reporter": "^0.4.4",
"squizlabs/php_codesniffer": "^3.3.0"
},
"autoload": {
"psr-4": {
"NumberToWords\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"NumberToWords\\": "tests"
}
}
}