-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathcomposer.json
More file actions
56 lines (56 loc) · 1.53 KB
/
composer.json
File metadata and controls
56 lines (56 loc) · 1.53 KB
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
{
"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": "Rony Wisnu Wardana (zerosdev)",
"email": "ronywisnuwardana@gmail.com"
}
],
"minimum-stability": "dev",
"require": {
"php": "^7.2|^8.0",
"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"
}
}
},
"require-dev": {
"cweagans/composer-patches": "^1.7",
"phpunit/phpunit": "^8.5"
},
"config": {
"allow-plugins": {
"cweagans/composer-patches": true
}
}
}