Skip to content

Commit

Permalink
Update composer.json
Browse files Browse the repository at this point in the history
use lightsaml/lightsaml
  • Loading branch information
upwebdesign committed Feb 28, 2022
1 parent 4547a8f commit 85f68e7
Showing 1 changed file with 29 additions and 21 deletions.
50 changes: 29 additions & 21 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,32 @@
{
"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 | ^9.0",
"illuminate/routing": "^7.0 | ^8.0 | ^9.0",
"forlabs/lightsaml": "^2.0"
},
"autoload": {
"psr-4": {
"CodeGreenCreative\\SamlIdp\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"CodeGreenCreative\\SamlIdp\\LaravelSamlIdpServiceProvider"
]
}
"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 | ^9.0",
"illuminate/routing": "^7.0 | ^8.0 | ^9.0",
"lightsaml/lightsaml": "^2.3"
},
"autoload": {
"psr-4": {
"CodeGreenCreative\\SamlIdp\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"CodeGreenCreative\\SamlIdp\\LaravelSamlIdpServiceProvider"
]
}
}
}

0 comments on commit 85f68e7

Please sign in to comment.