forked from jelix/saml-module
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.27 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "jelix/saml-module",
"type": "jelix-module",
"description": "module for Jelix, allowing to authenticate against an SAML server.",
"keywords": ["saml", "authentication", "jelix"],
"homepage": "http://jelix.org",
"license": "LGPL-2.1-only",
"authors": [
{
"name": "Laurent Jouanneau",
"email": "laurent@jelix.org"
}
],
"require": {
"php": ">=7.4",
"onelogin/php-saml": "~4.2.0",
"phpseclib/phpseclib": "~3.0.42"
},
"minimum-stability": "stable",
"extra" : {
"jelix" : {
"modules": [
"saml",
"samladmin"
],
"autoconfig-access-16" : {
"lizmap@3liz.com" : {
"saml": {
"__global": 1,
"index" : 1,
"admin" : 2
},
"samladmin": {
"__global": 0,
"index" : 0,
"admin" : 2
}
}
}
},
"branch-alias": {
"dev-master": "2.1.x-dev",
"dev-2.0.x": "2.0.x-dev",
"dev-1.0.x": "1.0.x-dev"
}
}
}