-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
38 lines (37 loc) · 1.07 KB
/
composer.json
File metadata and controls
38 lines (37 loc) · 1.07 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
{
"_license_comments": [
"Modified by Xander Smeets on 09-03-2024"
],
"name": "simplesamlphp/simplesamlphp-module-openidprovider",
"description": "A SimpleSAMLphp module adding support for the OpenID protocol as an Identity Provider.",
"type": "simplesamlphp-module",
"keywords": [ "openid", "provider" ],
"homepage": "http://simplesamlphp.org",
"license": "LGPL-2.1",
"authors": [
{
"name": "Olav Morken",
"email": "olav.morken@uninett.no"
},
{
"name": "Andreas Åkre Solberg",
"email": "andreas.solberg@uninett.no"
}
],
"autoload": {
"psr-4": {
"SimpleSAML\\Module\\openidprovider\\": "lib/"
}
},
"extra": {
"ssp-mixedcase-module-name": "openidProvider"
},
"require": {
"openid/php-openid": "~3.0.0",
"simplesamlphp/composer-module-installer": "~1.0",
"simplesamlphp/simplesamlphp": "~2.0"
},
"require-dev": {
"simplesamlphp/simplesamlphp-test-framework": "~0.1.0"
}
}