-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
34 lines (34 loc) · 939 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
{
"name": "komakino/identity",
"description": "Validation and property parsing of identity numbers",
"keywords": [
"identity","number","luhn","swedish","norwegian","finnish","danish",
"social security number","personnummer","pno","ssn","validate",
"organisationsnummer","CPR-nummer","henkilötunnus","personbeteckning",
"fødselsnummer"
],
"homepage": "http://www.github.com/komakino/identity",
"authors": [
{
"name": "Salem Sallnäs",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Komakino\\Identity\\": "src/"
}
},
"require": {
"komakino/luhn": "^1.0",
"komakino/modulus11": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "4.*"
},
"autoload-dev": {
"psr-4": {
"Komakino\\Identity\\Tests\\": "tests/"
}
}
}