-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.07 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
76
77
78
79
80
81
82
{
"name": "digitalcz/openid-connect",
"type": "library",
"description": "PHP implementation of https://openid.net/specs/openid-connect-core-1_0.html",
"keywords": [
"openid",
"openid connect",
"oidc",
"php"
],
"homepage": "https://github.com/digitalcz/openid-connect",
"license": "MIT",
"authors": [
{
"name": "Digital Solutions s.r.o.",
"email": "devs@digital.cz",
"homepage": "https://digital.cz",
"role": "Developer"
},
{
"name": "Pavel Stejskal",
"email": "spajxo@gmail.com",
"homepage": "https://github.com/spajxo",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"php-http/discovery": "^1.14",
"psr/http-client": "^1.0.1",
"psr/http-factory": "^1.0.1",
"psr/http-message": "^1.0.1 || ^2.0",
"psr/simple-cache": "^1.0.1 || ^3.0",
"spomky-labs/aes-key-wrap": "^7.0",
"thecodingmachine/safe": "^2.0",
"web-token/jwt-library": "^3.3"
},
"require-dev": {
"digitalcz/coding-standard": "^0.2.0",
"nyholm/nsa": "^1.3.0",
"nyholm/psr7": "^1.5.1",
"php-http/curl-client": "^2.2.0",
"php-http/mock-client": "^1.5.0",
"phpstan/extension-installer": "^1.2.0",
"phpstan/phpstan": "^1.9.0",
"phpstan/phpstan-phpunit": "^1.3.0",
"phpstan/phpstan-strict-rules": "^1.4.4",
"phpunit/phpunit": "^10.5.11 || ^11.0.3",
"symfony/cache": "^6.4.4 || ^v7.0.4",
"symfony/var-dumper": "^6.4.4 || ^v7.0.4",
"thecodingmachine/phpstan-safe-rule": "^1.2.0"
},
"autoload": {
"psr-4": {
"DigitalCz\\OpenIDConnect\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"DigitalCz\\OpenIDConnect\\": "tests"
}
},
"scripts": {
"tests": "phpunit",
"phpstan": "phpstan analyse",
"cs": "phpcs -p",
"csfix": "phpcbf -p",
"checks": [
"@cs",
"@phpstan",
"@tests"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"php-http/discovery": true
}
}
}