-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
40 lines (40 loc) · 1.12 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
{
"name": "reload/cpr",
"description": "CPR: Danish personal identification numbers",
"type": "library",
"homepage": "https://github.com/reload/cpr",
"license": "MIT",
"autoload": {
"psr-4": {
"Reload\\Cpr\\": "src/"
}
},
"authors": [
{
"name": "Arne Jørgensen",
"email": "[email protected]",
"homepage": "https://reload.dk"
}
],
"require": {
"php": "^8.2"
},
"require-dev": {
"dealerdirect/phpcodesniffer-composer-installer": "^1.0",
"phpcompatibility/php-compatibility": "^9.3",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpunit/phpunit": "^11.4",
"saggre/phpdocumentor-markdown": "^0.1.4",
"sempro/phpunit-pretty-print": "^1.2",
"squizlabs/php_codesniffer": "^3.11"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}