Kristen Gilden
Kristen Gilden
Starting from 2.0 the way to use Doctrine's QueryBuilder with DqlAdapter is to use `DqlAdapter::fromQueryBuilder` instead.
Source: https://www.elastic.co/guide/en/elasticsearch/guide/current/pagination.html
Currently [`Page::getItemsOfAllPages()`](https://github.com/kgilden/pager/blob/01a0622/src/Page.php#L88..L94) is making an unnecessary call to `Page::getItemCount()`. That's because [`AdapterInterface::getItems()`](https://github.com/kgilden/pager/blob/01a062207f936b2cc1ecf069b1e4e66939e0ca9d/src/AdapterInterface.php#L41) requires both offset & limit to be present. By changing the interface to make limit optional, we could...
The SOAP web service is inflexible and really serves no purpose other than getting the first version out there. Now that all time constraints are off it would be great...
Currently all transitions must be uniquely named. There's support to allow a transition to go from multiple states to a single end state, i.e.: ``` php $config = ['transitions' =>...
As a consumer of this package, it's difficult to upgrade from 0.16.* to 2.0. The [upgrade docs](https://github.com/markuspoerschke/iCal/blob/f858f765e9744834e821283c90eb8330e03174dc/UPGRADE.md) gives a nice general impression of how the package should now be used,...
Hi, thanks for all the work on this awesome package! Similar to https://github.com/nelmio/alice/issues/722 and https://github.com/nelmio/alice/issues/888, I'm getting exceptions about new entities being found via relationships. Suppose the following set-up. ```yaml...
| Q | A | ------------- | --- | Branch? | 2.6 | Tickets | n/a | License | MIT | Doc PR | n/a The `$context` array passed to...
I've been trying to get Vulcain working in a situation where CORS is necessary. At the moment it seems to me that browsers are blocking preload requests, because the generated...
Looks like 47a2ee9 caused guzzle logs to be funneled to the main `app` channel instead of `guzzle`. This is because [LoggerChannelPass](https://github.com/symfony/MonologBundle/blob/v2.7.1/DependencyInjection/Compiler/LoggerChannelPass.php#L47) only changes the logger to the correct channel, if...