Skip to content
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

Fix: Update well known config value function response types #376

Merged
merged 4 commits into from
Jul 26, 2023

Conversation

ricklambrechts
Copy link
Contributor

@ricklambrechts ricklambrechts commented Jun 14, 2023

List of common tasks a pull request require complete

  • Changelog entry is added or the pull request don't alter library's functionality

The well known properties can have values that are string, array or bool.

See:

{
    "version": "3.0",
    "token_endpoint_auth_methods_supported": [
        "none"
    ],
    "claims_parameter_supported": true,
    "request_parameter_supported": false,
    "request_uri_parameter_supported": true,
    "require_request_uri_registration": false,
    "grant_types_supported": [
        "authorization_code"
    ],
    "frontchannel_logout_supported": false,
    "frontchannel_logout_session_supported": false,
    "backchannel_logout_supported": false,
    "backchannel_logout_session_supported": false,
    "issuer": "https://example.com",
    "authorization_endpoint": "https://example.com/authorize",
    "jwks_uri": "https://example.com/jwks",
    "token_endpoint": "https://example.com/token",
    "scopes_supported": [
        "openid"
    ],
    "response_types_supported": [
        "code"
    ],
    "response_modes_supported": [
        "query"
    ],
    "subject_types_supported": [
        "pairwise"
    ],
    "userinfo_endpoint": "https://example.com/userinfo",
    "id_token_signing_alg_values_supported": [
        "RS256"
    ],
    "code_challenge_methods_supported": [
        "S256"
    ]
}

ricklambrechts added a commit to minvws/nl-rdo-openid-connect-php-laravel that referenced this pull request Jun 21, 2023
ricklambrechts added a commit to minvws/nl-rdo-openid-connect-php-laravel that referenced this pull request Jun 21, 2023
ricklambrechts added a commit to minvws/nl-rdo-openid-connect-php-laravel that referenced this pull request Jun 21, 2023
* chore: temp override OpenIDConnectClient

Because changes in PR jumbojett/OpenID-Connect-PHP#376 are needed.

* chore: update for linters
@ricklambrechts
Copy link
Contributor Author

Could you review this @DeepDiver1975 ?

@DeepDiver1975 DeepDiver1975 merged commit c146b71 into jumbojett:master Jul 26, 2023
8 checks passed
Magentron added a commit to Magentron/OpenID-Connect-PHP that referenced this pull request May 22, 2024
* upstream/master:
  fix: Removed duplicate check on jwks_uri and only check if jwks_uri exists when needed (jumbojett#373)
  fix: Check if subject is equal to subject of id token when verifying JWT claims (jumbojett#406)
  fix: Cast SERVER_PORT to integer (jumbojett#404)
  chore(deps): bump actions/cache from 3 to 4 (jumbojett#417)
  chore(deps): bump actions/checkout from 2 to 4 (jumbojett#416)
  docs: Update README.md to correct addScope parameter type in 1.0.0 (jumbojett#405)
  chore: Update ci to support php 8.3 and add dependabot (jumbojett#407)
  release: 1.0.0 (jumbojett#402)
  Set the User-Agent regardless of GET or POST (jumbojett#382)
  fix: Update well known config value function response types (jumbojett#376)
  feat: set useragent (jumbojett#370)
  feat: php7.0 minimum requirement (jumbojett#327)

# Conflicts:
#	CHANGELOG.md
Magentron added a commit to Magentron/OpenID-Connect-PHP that referenced this pull request May 22, 2024
…est-token

* master:
  fix: Removed duplicate check on jwks_uri and only check if jwks_uri exists when needed (jumbojett#373)
  fix: Check if subject is equal to subject of id token when verifying JWT claims (jumbojett#406)
  fix: Cast SERVER_PORT to integer (jumbojett#404)
  chore(deps): bump actions/cache from 3 to 4 (jumbojett#417)
  chore(deps): bump actions/checkout from 2 to 4 (jumbojett#416)
  docs: Update README.md to correct addScope parameter type in 1.0.0 (jumbojett#405)
  chore: Update ci to support php 8.3 and add dependabot (jumbojett#407)
  release: 1.0.0 (jumbojett#402)
  Set the User-Agent regardless of GET or POST (jumbojett#382)
  fix: Update well known config value function response types (jumbojett#376)
  feat: set useragent (jumbojett#370)
  feat: php7.0 minimum requirement (jumbojett#327)
  updated composer.json added replace, updated README.md added notification about project forked from

# Conflicts:
#	CHANGELOG.md
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants