-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 931 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 931 Bytes
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
{
"name": "akukoder/mykad",
"description": "A package to deal with MyKad or MyKid format, including validation and Faker provider.",
"homepage": "https://github.com/akukoder",
"keywords": [
"mykad",
"mykid",
"validator"
],
"license": "MIT",
"authors": [
{
"name": "Syahril Zulkefli",
"email": "syahzul@gmail.com"
}
],
"require": {
"php": "^7.4|^8.0|^8.1",
"nesbot/carbon": "^2.53.1|^3.0"
},
"require-dev": {
"laravel/framework": "^10.48.29",
"orchestra/testbench": "^8.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"AkuKoder\\MyKad\\": "src/",
"AkuKoder\\MyKad\\Test\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"AkuKoder\\MyKad\\MyKadServiceProvider"
]
}
}
}