forked from kingstarter/laravel-saml
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
29 lines (29 loc) · 767 Bytes
/
Copy pathcomposer.json
File metadata and controls
29 lines (29 loc) · 767 Bytes
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
{
"name": "jvangrouw/laravel-saml",
"description": "SAML support to make a laravel application to both a SAML IDP and a SAML SP.",
"keywords": ["laravel", "saml", "illuminate", "auth", "acl", "login", "sso", "idp", "sp"],
"license": "MIT",
"version": "dev-master",
"authors": [
{
"name": "Steve Hegenbart",
"email": "steve.hegenbart@kingstarter.de"
}
],
"require": {
"php": ">=7.2",
"litesaml/lightsaml": "^4.2"
},
"autoload": {
"psr-4": {
"KingStarter\\LaravelSaml\\": "src"
}
},
"extra": {
"laravel": {
"providers": [
"KingStarter\\LaravelSaml\\LaravelSamlServiceProvider"
]
}
}
}