Woody Gilk

Results 117 comments of Woody Gilk

@franzliedke I'm not sure what the correct solution is, perhaps just discarding `?.*` from the `$uri`. Right now the documentation just isn't clear about the fact that query params should...

So long as `git push --force-with-lease` is used, yes.

The difference is deceptively small. Consider the following calling code: ``` php $response = $image->getResponse(new Response); // vs $response = $image->getResponse(); ``` The former supports dependency injection and allows using...

> PSR7 is not only to create set of communication interfaces but also provide specific requiments for implementations That is exactly what the interfaces do. > adding one more dependency...

https://github.com/acodercat/php-jwk-to-pem might be helpful until JWK support lands.

@Spomky We only need support for PEM keys during a HTTP request lifecycle, so the package I linked is better fit for our needs. As a side node about: jwt-framework...

@weierophinney thank you for testing this out and the detailed report. I am happy to start working on updating PSR-17 (and PSR-15) for this change.

According to [JSON-API recommendations][1] the `filter` parameter should use a comma-separated list of values. We've used `deepObject` with `explode: false` in the past with other tools to follow this recommendation....

I did something similar in #52, but mine has no blocking ability.

If you make a pull request, I'll merge it.