-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
64 lines (64 loc) · 1.73 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "zerosdev/nik-reader",
"description": "Identity data reader based on NIK (Nomor Induk Kependudukan)",
"type": "library",
"license": "MIT",
"homepage": "https://github.com/ZerosDev/nik-reader",
"support":
{
"issues": "https://github.com/ZerosDev/nik-reader/issues",
"source": "https://github.com/ZerosDev/nik-reader"
},
"authors":
[
{
"name": "Suyadi",
"email": "suyadi.1992@gmail.com"
},
{
"name": "ZerosDev",
"email": "admin@zeros.co.id"
}
],
"minimum-stability": "dev",
"require":
{
"php": ">=5.6",
"ext-json": "*"
},
"autoload":
{
"psr-4":
{
"ZerosDev\\NikReader\\": "src/"
}
},
"extra":
{
"laravel":
{
"providers":
[
"ZerosDev\\NikReader\\Laravel\\ServiceProvider"
],
"aliases":
{
"NikReader": "ZerosDev\\NikReader\\Laravel\\Facade"
}
},
"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"
}
}
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"phpunit/phpunit": "4.8.34"
}
}