-
Notifications
You must be signed in to change notification settings - Fork 85
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
1 changed file
with
29 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
] | ||
} | ||
} | ||
} |