-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.22 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
{
"name": "cicnavi/oidc-client-php",
"description": "OIDC client written in PHP",
"type": "library",
"require": {
"php": ">=7.4",
"ext-json": "*",
"ext-openssl": "*",
"ext-gmp": "*",
"web-token/jwt-framework": "^v2.2.10",
"guzzlehttp/guzzle": "^7.0",
"psr/simple-cache": "^1.0",
"psr/http-message": "^1.0",
"psr/http-factory": "^1.0",
"psr/http-client": "^1.0",
"cicnavi/simple-file-cache-php": "^2.0"
},
"autoload": {
"psr-4": {
"Cicnavi\\Oidc\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cicnavi\\Tests\\Oidc\\": "tests/Oidc"
}
},
"license": "MIT",
"authors": [
{
"name": "Marko Ivancic",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"ext-xdebug": "*",
"vimeo/psalm": "^4",
"squizlabs/php_codesniffer": "^3.5",
"phpunit/phpunit": "^9.4"
},
"scripts": {
"test": [
"vendor/bin/phpunit",
"vendor/bin/psalm --show-info=true --no-cache",
"vendor/bin/phpcs -p"
]
}
}