-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathcomposer.json
More file actions
42 lines (42 loc) · 1.11 KB
/
composer.json
File metadata and controls
42 lines (42 loc) · 1.11 KB
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
{
"name": "web-eid/web-eid-authtoken-validation-php",
"description": "Web eID authentication token validation library for PHP",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Guido Gröön",
"role" : "developer"
}
],
"require-dev": {
"phpunit/phpunit": "^10.5"
},
"autoload": {
"psr-4": {
"web_eid\\web_eid_authtoken_validation_php\\": ["src"]
},
"classmap": [
"src/util/CollectionsUtil.php"
]
},
"autoload-dev": {
"psr-4": {
"web_eid\\web_eid_authtoken_validation_php\\": ["tests"]
}
},
"require": {
"php": "^8.1.0",
"phpseclib/phpseclib": "^3.0.0",
"guzzlehttp/psr7": "^2.6.0",
"psr/log": "^3.0.0"
},
"scripts": {
"fix-php": ["prettier src/**/* --write", "prettier examples/src/* --write"],
"test": "phpunit --no-coverage --display-warnings",
"test-coverage": [
"@putenv XDEBUG_MODE=coverage",
"phpunit --coverage-html coverage"
]
}
}