Woody Gilk
Woody Gilk
### Are you certain it's a bug? - [X] Yes, it looks like a bug ### Is the issue caused by a plugin? - [X] It is not a plugin...
Unless the pagination links are removed from the URI passed to `Document::addPaginationLinks()` the output will be duplicated: ```json "links": { "first": "https:\/\/api.acme.net\/users?page%5Blimit%5D=5?page%5Blimit%5D=5", "next": "https:\/\/api.acme.net/users?page%5Blimit%5D=5?page%5Blimit%5D=5&page%5Boffset%5D=5" } ``` It should be clearly...
Right now it looks that `git town sync` will **always** merge the development branch into feature branches. Our workflow mandates that all feature branches need to be *rebased* on the...
Right now this package depends on `guzzlehttp\psr7` which contradicts the point of PSR-7. It should be possible to use any PSR-7 package that provides a response class compatible with `ResponseInterface`,...
@brianhaveri since it seems you have abandoned this package, would you consider transferring the ownership to someone else to maintain? I think that @thephpleague would consider taking it over.
```php $app->command( expression:
Right now the usage of static classes as factories makes it really had to extend the query builder on a per-project basis. A more decoupled approach that would allow for...
Formatters should also do something like this: ``` php // JsonFormatter public function getContentType() { return 'application/json'; } ``` So that when the formatted output is returned, the appropriate type...
I was just writing some code that would have been greatly improved by having a `splat()` function that works similarly to `all()`. The current code is: ``` php Promise\all($promises)->then(function ($results)...
[PSR-17](https://github.com/php-fig/fig-standards/tree/master/proposed/http-factory) is an upcoming proposal that will standardize HTTP Message factories. The work of defining the actual interfaces is happening right now in @http-interop http-factory repository. Can we work together...