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: replace abandoned packages #40

Open
wants to merge 7 commits into
base: master
Choose a base branch
from
Open

Conversation

p4veI
Copy link

@p4veI p4veI commented Jun 13, 2024

Hello, we're using this package in one of our project and came around this issue with abandoned packages, it's forcing us to add indirect dependency to our project. I noticed somebody has already tried to fix this issue in #37 but seems like unresolved change requests are blocking the release, hope this could help.

thanks!

EDIT: looks like I can't really finish this either 😅

$this->algorithmManager,
new CompressionMethodManager([new Deflate()])
);
$this->jweBuilder = $jweBuilder ?? new JWEBuilder($this->algorithmManager);
Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@cooperaj
Copy link

Anything I can do to help this one along? Abandoned packages in our project are making people feel antsy.

@p4veI
Copy link
Author

p4veI commented Jul 10, 2024

@cooperaj I think in order to finish this, we need https://github.com/facile-it/php-jose-verifier v0.5 to be completed..

@@ -46,7 +46,7 @@ public function build(string $resource): IssuerInterface
$metadata = IssuerMetadata::fromArray($metadataBuilder->build()->fetch($resource));

$jwksProviderBuilder = $this->buildJwksProviderBuilder();
$jwksProviderBuilder->setJwksUri($metadata->getJwksUri());
$jwksProviderBuilder->withJwksUri($metadata->getJwksUri());

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think this is a fluent method call so potentially this will want to be

Suggested change
$jwksProviderBuilder->withJwksUri($metadata->getJwksUri());
$jwksProviderBuilder = ($this->buildJwksProviderBuilder())->withJwksUri($metadata->getJwksUri());

@rulim34
Copy link

rulim34 commented Aug 29, 2024

Looks like there's new beta release on https://github.com/facile-it/php-jose-verifier

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.

3 participants