-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
53 lines (52 loc) · 1.24 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
{
"name": "lkallas/estonianpin",
"description": "A simple library for processing Estonian Personal Identification Code (isikukood).",
"keywords": [
"estonia",
"pin",
"isikukood",
"php",
"personal id",
"personal identification code",
"national id",
"personal identification number"
],
"homepage": "http://github.com/lkallas/estonianpin",
"type": "library",
"version": "1.2.0",
"license": "MIT",
"authors": [
{
"name": "Lennar Kallas",
"email": "[email protected]",
"homepage": "https://lennar.eu/",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/lkallas/estonianpin/issues"
},
"require": {
"php": ">=7.3"
},
"require-dev": {
"phpunit/phpunit": "^9.0"
},
"autoload": {
"psr-4": {
"Lkallas\\Estonianpin\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lkallas\\Estonianpin\\": "tests/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"scripts": {
"test": "phpunit --verbose --colors=always"
}
}