forked from slwdc/NICParser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 938 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "pnm1231/nic-parser",
"description": "Sri Lankan national identity card number validator",
"type": "library",
"license": "MIT",
"keywords": [
"validation",
"identity-card",
"srilanka",
"sri-lanka",
"slwdc",
"national-identification-number",
"national-identity-documents"
],
"authors": [
{
"name": "Prasad Nayanajith",
"email": "[email protected]"
},
{
"name": "Ayesh Karunaratne",
"email": "[email protected]"
}
],
"require": {
"php-64bit": "^7.4|^8.0"
},
"require-dev": {
"phpunit/phpunit": "^9.2",
"ayesh/case-insensitive-array": "^1.2.0"
},
"autoload": {
"psr-4": {
"pnm1231\\NICParser\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"pnm1231\\NICParser\\Tests\\": "tests/"
}
},
"scripts": {
"test": [
"phpunit"
]
},
"support": {
"issues": "https://github.com/pnm1231/NICParser/issues",
"source": "https://github.com/pnm1231/NICParser"
}
}