-
Notifications
You must be signed in to change notification settings - Fork 18
/
composer.json
41 lines (41 loc) · 1.13 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
35
36
37
38
39
40
41
{
"name": "nasution/terbilang",
"description": "Convert numbers into words (and vice-versa) in Indonesian language",
"homepage": "https://github.com/mul14/terbilang-php",
"keywords": ["terbilang", "indonesia"],
"type": "library",
"license": "WTFPL",
"authors": [
{
"name": "Mulia Arifandi Nasution",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Nasution\\": "src/Nasution"
},
"files": [
"src/terbilang.php"
]
},
"require": {
"php": ">= 5.3.3"
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"phpunit/phpunit": "4.8.34"
},
"extra": {
"composer-exit-on-patch-failure": true,
"patches": {
"phpunit/phpunit-mock-objects": {
"Fix PHP 7 and 8 compatibility": "https://cdn.jsdelivr.net/gh/esyede/phpunit-patches/phpunit_mock_objects.patch"
},
"phpunit/phpunit": {
"Fix PHP 7 compatibility": "https://cdn.jsdelivr.net/gh/esyede/phpunit-patches/phpunit_php7.patch",
"Fix PHP 8 compatibility": "https://cdn.jsdelivr.net/gh/esyede/phpunit-patches/phpunit_php8.patch"
}
}
}
}