forked from simplesamlphp/simplesamlphp-module-oidc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
62 lines (62 loc) · 1.79 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
{
"name": "rediris-es/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": "[email protected]"
}
],
"require": {
"php": ">=7.2.0",
"ext-openssl": "*",
"league/oauth2-server": "^7.0",
"nette/forms": "^2.4",
"psr/container": "^1.0",
"simplesamlphp/composer-module-installer": "^1.0",
"web-token/jwt-framework": "^2.1",
"steverhoades/oauth2-openid-connect-server": "^1.0",
"zendframework/zend-diactoros": "^1.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.10",
"friends-of-phpspec/phpspec-code-coverage": "^4.3",
"php-coveralls/php-coveralls": "^2.0",
"phpspec/phpspec": "^6.1",
"phpunit/php-code-coverage": "^6.0",
"phpunit/phpcov": "^5.0",
"phpunit/phpunit": "^7.0",
"simplesamlphp/simplesamlphp": "^1.18",
"simplesamlphp/simplesamlphp-test-framework": "^0.1.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"SimpleSAML\\Modules\\OpenIDConnect\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\SimpleSAML\\Modules\\OpenIDConnect\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
}
}