-
Notifications
You must be signed in to change notification settings - Fork 84
/
composer.json
37 lines (37 loc) · 1.08 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
{
"name": "codegreencreative/laravel-samlidp",
"description": "Make your PHP Laravel application an Identification Provider using SAML 2.0. This package allows you to implement your own Identification Provider (idP) using the SAML 2.0 standard to be used with supporting SAML 2.0 Service Providers (SP).",
"keywords": [
"laravel",
"saml",
"saml 2.0",
"auth",
"acl",
"sso",
"idp"
],
"license": "MIT",
"require": {
"php": "^7.2.5|^8.0",
"laravel/framework": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0",
"illuminate/routing": "^7.0|^8.0|^9.0|^10.0|^11.0",
"litesaml/lightsaml": "^4.0",
"ext-zlib": "*"
},
"autoload": {
"psr-4": {
"CodeGreenCreative\\SamlIdp\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"CodeGreenCreative\\SamlIdp\\LaravelSamlIdpServiceProvider"
]
}
},
"require-dev": {
"laravel/pint": "^1.17"
}
}