-
Notifications
You must be signed in to change notification settings - Fork 7
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
base: master
Are you sure you want to change the base?
Conversation
$this->algorithmManager, | ||
new CompressionMethodManager([new Deflate()]) | ||
); | ||
$this->jweBuilder = $jweBuilder ?? new JWEBuilder($this->algorithmManager); |
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.
Anything I can do to help this one along? Abandoned packages in our project are making people feel antsy. |
@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()); |
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.
I think this is a fluent method call so potentially this will want to be
$jwksProviderBuilder->withJwksUri($metadata->getJwksUri()); | |
$jwksProviderBuilder = ($this->buildJwksProviderBuilder())->withJwksUri($metadata->getJwksUri()); |
Looks like there's new beta release on https://github.com/facile-it/php-jose-verifier |
Any updates on this? I would love to see this get merged in and a new version released so we can stop using the abandoned packages. |
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 😅