forked from codegreencreative/laravel-samlidp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
24 lines (24 loc) · 871 Bytes
/
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
{
"name": "codegreencreative/laravel-samlidp",
"description": "Make your PHP Laravel application an Idenification 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",
"illuminate/support": "^7.0 | ^8.0",
"illuminate/routing": "^7.0 | ^8.0",
"forlabs/lightsaml": "^2.0"
},
"autoload": {
"psr-4": {
"CodeGreenCreative\\SamlIdp\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"CodeGreenCreative\\SamlIdp\\LaravelSamlIdpServiceProvider"
]
}
}
}