forked from simplesamlphp/simplesamlphp-module-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
84 lines (84 loc) · 2.49 KB
/
composer.json
File metadata and controls
84 lines (84 loc) · 2.49 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "simplesamlphp/simplesamlphp-module-oidc",
"description": "A SimpleSAMLphp module adding support for the OpenID Connect protocol",
"type": "simplesamlphp-module",
"keywords": [ "oauth2", "openid", "connect", "oidc", "openid connect" ],
"license": "MIT",
"authors": [
{
"name": "Spanish Research and Academic Network"
},
{
"name": "University of Córdoba"
},
{
"name": "Sergio Gómez",
"email": "sergio@uco.es"
}
],
"require": {
"php": ">=7.4",
"ext-curl": ">=7.4",
"ext-json": "*",
"ext-openssl": "*",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^7.0",
"laminas/laminas-diactoros": "^2.2.1",
"laminas/laminas-httphandlerrunner": "^1.1.0",
"lcobucci/jwt": "^4.1",
"league/oauth2-server": "^8.1.0",
"nette/forms": "^2.4",
"psr/container": "^1.0",
"psr/log": "^1.1",
"simplesamlphp/composer-module-installer": "^1.0",
"spomky-labs/base64url": "^2.0",
"steverhoades/oauth2-openid-connect-server": "^2.0",
"web-token/jwt-framework": "^2.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10",
"friends-of-phpspec/phpspec-code-coverage": "^6.1",
"phpspec/phpspec": "^7.1.0",
"phpunit/php-code-coverage": "^9.0.0",
"phpunit/phpcov": "^8.2.0",
"phpunit/phpunit": "^9.0.0",
"simplesamlphp/simplesamlphp": "^1.19,<2",
"simplesamlphp/simplesamlphp-test-framework": "^0.1.9"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\oidc\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSAML\\Test\\Module\\oidc\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"pre-commit": [
"vendor/bin/check-syntax-php.sh",
"vendor/bin/check-syntax-json.sh",
"vendor/bin/check-syntax-xml.sh",
"vendor/bin/check-syntax-yaml.sh",
"vendor/bin/psalm",
"vendor/bin/psalter --issues=UnnecessaryVarAnnotation --dry-run",
"vendor/bin/phpcs -p"
],
"tests": [
"vendor/bin/phpunit --no-coverage",
"vendor/bin/phpspec run "
]
}
}