-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathcomposer.json
75 lines (75 loc) · 1.61 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "personnummer/personnummer",
"type": "utility",
"license": "MIT",
"description": "Validate Swedish social security numbers",
"authors": [
{
"name": "Fredrik Forsmo",
"homepage": "https://github.com/frozzare"
},
{
"name": "Rasmus Bengtsson",
"homepage": "https://github.com/rasmusbe"
},
{
"name": "Johannes Tegnér",
"homepage": "https://github.com/johannestegner"
}
],
"keywords": [
"utility",
"personnummer",
"samordningsnummer",
"identify",
"security",
"swedish",
"social security number",
"personal identity number",
"personal id",
"co-ordination",
"coordination"
],
"support": {
"issues": "https://github.com/personnummer/php/issues"
},
"require": {
"php": ">=8.1",
"psr/clock": "^1.0.0"
},
"require-dev": {
"ext-json": "*",
"squizlabs/php_codesniffer": "^3.8",
"jchook/phpunit-assert-throws": "^1.0",
"phpunit/phpunit": "^10.5.5",
"phpcompatibility/php-compatibility": "^9.3",
"dealerdirect/phpcodesniffer-composer-installer": "^1.0.0",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Personnummer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Personnummer\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/phpcs --standard=ruleset.xml",
"unittest": "vendor/bin/phpunit",
"test": [
"@lint",
"@unittest"
]
},
"config": {
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}