-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.57 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.57 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "itk-dev/openid-connect",
"description": "OpenID connect configuration package",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Jeppe Kuhlmann Andersen",
"email": "jekua@aarhus.dk"
},
{
"name": "Ture Gjørup",
"email": "tug@aarhus.dk"
},
{
"name": "Lars Steen Risom",
"email": "lats@aarhus.dk"
}
],
"require": {
"php": "^8.3",
"ext-json": "*",
"ext-openssl": "*",
"firebase/php-jwt": "^7.0",
"league/oauth2-client": "^2.6",
"psr/cache": "^2.0 || ^3.0",
"psr/http-client": "^1.0",
"robrichards/xmlseclibs": "^3.1"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.50",
"friendsofphp/php-cs-fixer": "^3.75",
"mockery/mockery": "^1.6.12",
"phpstan/phpstan": "^2.1.40",
"phpunit/php-code-coverage": "^12",
"phpunit/phpunit": "^12"
},
"autoload": {
"psr-4": {
"ItkDev\\OpenIdConnect\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"scripts": {
"apply-coding-standards": [
"vendor/bin/php-cs-fixer fix"
],
"check-coding-standards": [
"vendor/bin/php-cs-fixer fix --dry-run --diff"
],
"test": "XDEBUG_MODE=coverage ./vendor/bin/phpunit"
}
}