-
Notifications
You must be signed in to change notification settings - Fork 368
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Enabled client_secret_basic authentication on requestClientCredentialsToken() #348
base: master
Are you sure you want to change the base?
Changes from 9 commits
cb6cec4
8ef1281
90b959b
5b3bd9a
5e83bc4
41301c6
c9ee737
9b64e0d
48d38b3
3327b14
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
NB: This is a fork from [jumbojett/OpenID-Connect-PHP](https://github.com/jumbojett/OpenID-Connect-PHP) to allow client basic authentication on obtaining the access token. | ||
|
||
PHP OpenID Connect Basic Client | ||
======================== | ||
A simple library that allows an application to authenticate a user through the basic OpenID Connect flow. | ||
|
@@ -14,7 +16,7 @@ A special thanks goes to Justin Richer and Amanda Anganes for their help and sup | |
## Install ## | ||
1. Install library using composer | ||
``` | ||
composer require jumbojett/openid-connect-php | ||
composer require magentron/openid-connect-php | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please revert this change. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reverted |
||
``` | ||
|
||
2. Include composer autoloader | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "jumbojett/openid-connect-php", | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please revert this change. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Reverted |
||
"description": "Bare-bones OpenID Connect client", | ||
"name": "magentron/openid-connect-php", | ||
"description": "Bare-bones OpenID Connect client (forked to allow client secret basic authentication on obtaining access token)", | ||
"license": "Apache-2.0", | ||
"require": { | ||
"php": ">=7.0", | ||
|
@@ -13,6 +13,9 @@ | |
"roave/security-advisories": "dev-latest", | ||
"yoast/phpunit-polyfills": "^2.0" | ||
}, | ||
"replace": { | ||
"jumbojett/openid-connect-php": "<=0.9.10" | ||
}, | ||
"archive" : { | ||
"exclude" : [ | ||
".*" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please revert this change.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reverted