-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 944 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
35
36
37
{
"name": "nineteenfeet/nf-number-to-word",
"description": "Convert a number into its word representation. e.g. 1 => one",
"keywords": [
"number", "word", "conversion"
],
"homepage": "http://github.com/19FT/NFNumberToWord",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Rob Allen",
"email": "rob@19ft.com",
"homepage": "http://19ft.com"
}
],
"require": {
"php": ">=8.1"
},
"autoload": {
"classmap": [
"./NumberToWords.php"
]
},
"require-dev": {
"phpunit/phpunit": "^10.2",
"phpstan/phpstan": "^1.10",
"overtrue/phplint": "^9.0",
"squizlabs/php_codesniffer": "^3.7",
"slevomat/coding-standard": "^8.12"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}